Date Function

  • Thread starter Thread starter Chris
  • Start date Start date
C

Chris

I'm looking for a date function that I can use that will always just pull
the current month. Any suggestions?

Thanks,
Chris
 
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
 
Field: SomeDateField
Criteria: Between DateSerial(Year(Date()),Month(Date()),1) AND DateSerial(Year(Date()),Month(Date())+1,0)
 
Back
Top