Month([ArrivalDate]) not to display number month

  • Thread starter Thread starter Faio
  • Start date Start date
F

Faio

Hi,

I used a query to be applied on a Date field as =Month([ArrivalDate]) and
gave me a number which stands for a Month but I do not like that and wish to
display month name.

This means that when a query date like 2/2/2004 it will returns 2 and not
Feb or February. Can this be done?

Thanks in advance
 
Hi,

I used a query to be applied on a Date field as =Month([ArrivalDate]) and
gave me a number which stands for a Month but I do not like that and wish to
display month name.

This means that when a query date like 2/2/2004 it will returns 2 and not
Feb or February. Can this be done?

Thanks in advance
Format([ArrivalDate],"mmm")
or
Format([ArrivalDate],"mmmm")
or
MonthName(Month([ArrivalDate]))
 
Yes,

you can use
Format([ArrivalDate], "mmm")
or
Format([ArrivalDate], "mmmm")


Luiz Cláudio C. V. Rocha
São Paulo - Brazil
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top