Formating Date Field

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,

Can I format a date field to show just the first 3 letters of the month - ex
Jan, Feb etc?


also, would I be able to format

=DateAdd("m",-11,Forms!frmSelection!txtEndDate) as the first 3 letters of
the month ?
the txtEndDate is 12/31/2005
 
I am not sure about formatting a field in a table but for everything else:

=Format([YourDateValue],"mmm")

If you also want day and year then:

=Format([YourDateValue],"mmm/dd/yyyy")

Hope that is what you were looking for,

Jim
 
If this is a control on a report, then you can set the format property of
the control to MMM
That should show ust the first three letters of the date.
 

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

Similar Threads

Excel Help with dates 2
Multiple criteria 3
dynamic filter? 1
Access 2003 - Setting default value of a text box 5
Need help with SQL Statement in MS Access 2003 Chart 11
Date Diff Issue 4
Date Diff Questions 2
Syntax error in Dsum 5

Back
Top