Using Access 2003
A club's fiscal year is from October 1 through September 30.
To determine whether or not data falls within the current fiscal year, would the following not set the correct date parameters?
Tom
A club's fiscal year is from October 1 through September 30.
To determine whether or not data falls within the current fiscal year, would the following not set the correct date parameters?
Code:
Between DateSerial(Year(Date(),9,30) AND DateSerial(Year(Date()-1,10,1))
Tom