search for date of this year

fadetoblack

Registered User.
Local time
Today, 06:36
Joined
Aug 26, 2006
Messages
16
In my database I has a Month([Date]) field which returns records from the criteria of month "1", "2" through to "12". However I want it to return them for those months only of this year.

Is there a date function where I can have something like
Month([Date]), Year ([=Now])

thanks
 
Hello
The below function will return the Year portion of a date:
'
=Year(Now())
Make sure your table field has the Datatype set to Date / Time.
'
Regards
Mark
 

Users who are viewing this thread

Back
Top Bottom