D DavyLad New member Local time Today, 14:00 Joined Jan 3, 2008 Messages 5 Jan 3, 2008 #1 Hi there. I am trying to calculate the day from a date. I apologise for not knowing the correct function, but have not used Access for some time. Many thanks David
Hi there. I am trying to calculate the day from a date. I apologise for not knowing the correct function, but have not used Access for some time. Many thanks David
J johndoomed VBA idiot Local time Today, 06:00 Joined Nov 4, 2004 Messages 174 Jan 3, 2008 #2 strDay= Format(strDate, "dddd") will give you the day. Check out the function "Weekday" for more advanced calculations.
strDay= Format(strDate, "dddd") will give you the day. Check out the function "Weekday" for more advanced calculations.
D DavyLad New member Local time Today, 14:00 Joined Jan 3, 2008 Messages 5 Jan 3, 2008 #3 Thanks a lot John