HI,
I am using Access 2007 and have a query that returns values for the next week using the following code:
It has worked perfectly all year until now when next week starts in Dec 08 and concludes in Jan 09. It only returns the records with dates through 12/31 and does not show the records with dates of 1/2/09. Does anyone know how to fix this?
thanks,
Jeff
I am using Access 2007 and have a query that returns values for the next week using the following code:
Code:
Year([shipdate])*53+DatePart("ww",[shipdate])=Year(Date())*53+DatePart("ww",Date())+1.
thanks,
Jeff
Comment