I am trying to create a query from the query design menus that will return all records based on a user supplied fiscal year. I have been able to create one for the current fiscal year but not past years(i.e. 2010, 2009,etc...). My current fiscal year criteria is as follows:
Between DateSerial(Year(Date())-1,10,1) And DateSerial(Year(Date()),9,30)
How can I modify this for past years and at the same time ask the user for the year he wants for this query? The field name is SchedDate and it is in a medium date format.
Between DateSerial(Year(Date())-1,10,1) And DateSerial(Year(Date()),9,30)
How can I modify this for past years and at the same time ask the user for the year he wants for this query? The field name is SchedDate and it is in a medium date format.