Hello guys
I try to show in the history of the field is distributed on 3 fields
Used the query but I can not show today
For example, in the history of the field is 10/31/2008
Please help
SELECT Right([Submit_Date],4) AS Submit_Year, Left([Submit_Date],InStr([Submit_Date],"/")-1) AS Submit_Month, MyTable.State, MyTable.Submit_Date
FROM MyTable
GROUP BY Right([Submit_Date],4), Left([Submit_Date],InStr([Submit_Date],"/")-1), MyTable.State, MyTable.Submit_Date
ORDER BY Right([Submit_Date],4), Left([Submit_Date],InStr([Submit_Date],"/")-1);