Hi,
I have a field month (datatype number) in my table and I want to display the month in words. I wrote:
select Format(Month,"m mmm") as month from mytable;
But it gives Dec for 1, Jan for 2 and so on.Please advice me on this. Thank you
I have a field month (datatype number) in my table and I want to display the month in words. I wrote:
select Format(Month,"m mmm") as month from mytable;
But it gives Dec for 1, Jan for 2 and so on.Please advice me on this. Thank you
Comment