C Chris Feb 9, 2005 #1 I'm looking for a date function that I can use that will always just pull the current month. Any suggestions? Thanks, Chris
I'm looking for a date function that I can use that will always just pull the current month. Any suggestions? Thanks, Chris
P PC Datasheet Feb 9, 2005 #3 Format(Month(Date()),"mmmm") will return the full name of the month; ie, February. -- PC Datasheet Your Resource For Help With Access, Excel And Word Applications (e-mail address removed) www.pcdatasheet.com
Format(Month(Date()),"mmmm") will return the full name of the month; ie, February. -- PC Datasheet Your Resource For Help With Access, Excel And Word Applications (e-mail address removed) www.pcdatasheet.com
J John Spencer (MVP) Feb 10, 2005 #4 Field: SomeDateField Criteria: Between DateSerial(Year(Date()),Month(Date()),1) AND DateSerial(Year(Date()),Month(Date())+1,0)
Field: SomeDateField Criteria: Between DateSerial(Year(Date()),Month(Date()),1) AND DateSerial(Year(Date()),Month(Date())+1,0)