Date Format

  • Thread starter Thread starter marconi86
  • Start date Start date
M

marconi86

I need to change the format of a date field from mm/dd/yyyy to the day
of the week (Sat, Fri, etc.) Any help?
 
I need to change the format of a date field from mm/dd/yyyy to the day
of the week (Sat, Fri, etc.) Any help?

Set the format property to "ddd". This only affects how it is displayed.
Dates are always stored exactly the same.
 
On your form go to the control that displays your date, select the control
and go to format. under format type "dddd". this should take care of yuouur
problem.
 
Hi.

Try: Format(DateField,"ddd")

For full day names, add a fourth d.

-Michael
 
Hi,
leave the values as they are in the table...if you want to display only the
date part then format the value at runtime on forms/reports as you wish.
You can either use the Format() Function e.g.:

=Format([YourDateField],"ddd")

Or you can use the WeekDay function as well.
HTH
Good luck
 

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