Recode Table

timlowe

New member
Local time
Today, 08:04
Joined
Dec 4, 2003
Messages
8
Hi, I have a report that runs off an sql query (ODBC)... Im using the Function
MONTH(FIELD) and it returns the Number of the month. How can i get this to show the work "January" instead of the number 1?? any suggestions would really help me out.

Thanks :confused:
 
Try: MonthName(Month(datevalue))
 
I tried the MonthName(Month(datevalue))

But it bounces back an error saying "MonthName" is and Invalid Function
 
I just wanted to thank everyone for their help, After messing with the sql query for a while, i was able to get this to work for me.


DATENAME(Month,e.er_1_date)
 
an sql function, MONTH(date) returns the number for the month, and

DATENAME(Month,date) returns the actual month name
 
I'll have to keep that in mind, im more familiar with sql than i am access.
 

Users who are viewing this thread

Back
Top Bottom