Jul 24, 2006 #1 paulobrads Programmer Joined Jul 13, 2006 Messages 28 Location GB I'm writing queries in MS access and need a way of determining the day of the week from a date value - any ideas? Cheers.
I'm writing queries in MS access and need a way of determining the day of the week from a date value - any ideas? Cheers.
Jul 24, 2006 #2 r937 Technical User Joined Jun 30, 2002 Messages 8,847 Location CA WEEKDAY(datecol) are you using microsoft access by itself or access as the front end for a microsoft sql server database? is this for a passthrough query? r937.com | rudy.ca Upvote 0 Downvote
WEEKDAY(datecol) are you using microsoft access by itself or access as the front end for a microsoft sql server database? is this for a passthrough query? r937.com | rudy.ca
Jul 24, 2006 Thread starter #3 paulobrads Programmer Joined Jul 13, 2006 Messages 28 Location GB Cheers, I actually found DatePart("w",Date()))=2 as a check to see if today's day is a Monday. Many thanks. Upvote 0 Downvote
Cheers, I actually found DatePart("w",Date()))=2 as a check to see if today's day is a Monday. Many thanks.