current month on default value

romio

Registered User.
Local time
Yesterday, 23:19
Joined
Apr 20, 2005
Messages
68
how can i show the name of the current month, using the default value, I use day(now()) and year(now()).

I tried using month(now()) and monthname(now()) but they don’t seem to be working! any help?

Thanks
 
Try: FORMAT(now(),"mmm")
You can return a fully formated date say 03-JAN-2005 like:
FORMAT(now(),"dd-mmm-yyyy")
 
Thanks a lot FoFa. :)
 

Users who are viewing this thread

Back
Top Bottom