R romio Registered User. Local time Yesterday, 18:25 Joined Apr 20, 2005 Messages 68 Aug 24, 2005 #1 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
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
FoFa Registered User. Local time Yesterday, 20:25 Joined Jan 29, 2003 Messages 3,672 Aug 24, 2005 #2 Try: FORMAT(now(),"mmm") You can return a fully formated date say 03-JAN-2005 like: FORMAT(now(),"dd-mmm-yyyy")
Try: FORMAT(now(),"mmm") You can return a fully formated date say 03-JAN-2005 like: FORMAT(now(),"dd-mmm-yyyy")
R romio Registered User. Local time Yesterday, 18:25 Joined Apr 20, 2005 Messages 68 Aug 25, 2005 #3 Thanks a lot FoFa.