DatePart function

D

Day of week

I need to find the day (Sun,Mon,Tues....) from a date field (6/9/2009). I
tried DatePart, However, all I get is a number. Can anyone help?

Thanks,
Jose
 
J

Jerry Whittle

Format([TheDateField],"DDDD")

Use 3 D's if you want the abbreviated date.
 
J

John W. Vinson

On Thu, 2 Jul 2009 10:22:38 -0700, Day of week <Day of
I need to find the day (Sun,Mon,Tues....) from a date field (6/9/2009). I
tried DatePart, However, all I get is a number. Can anyone help?

Thanks,
Jose

Just set the Format property of the textbox in which this is displayed to
"ddd"; or use

Format([datefield], "ddd")

if you need it as a text field in a query.
 

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

Top