Oct 20, 2008 #1 Zonie32 Technical User Jan 13, 2004 242 US I need to return the weekday name, ie Monday, Tuesday, etc in my query based on a date field. I can't figure out the format. Can someone help? I have Format[DateField],"ww") but that gives me numbers, I need the weekday name. Thanks.
I need to return the weekday name, ie Monday, Tuesday, etc in my query based on a date field. I can't figure out the format. Can someone help? I have Format[DateField],"ww") but that gives me numbers, I need the weekday name. Thanks.
Oct 20, 2008 #2 Remou Technical User Sep 30, 2002 13,030 BE You can use: Format[DateField],"ddd") Or Format[DateField],"dddd") Upvote 0 Downvote
Oct 20, 2008 Thread starter #3 Zonie32 Technical User Jan 13, 2004 242 US Well that was easy enough! Thanks a whole lot! Upvote 0 Downvote