S Sed Registered User. Local time Today, 12:27 Joined Oct 16, 2008 Messages 111 Nov 10, 2008 #1 Anybody knows how to convert dates to week number?
N namliam The Mailman - AWF VIP Local time Today, 21:27 Joined Aug 11, 2003 Messages 11,695 Nov 10, 2008 #2 Lookup the "format" function
S Sed Registered User. Local time Today, 12:27 Joined Oct 16, 2008 Messages 111 Nov 10, 2008 #3 I don't understand. I have a field with all the dates in my query and I want to see if I can convert those dates into a week number
I don't understand. I have a field with all the dates in my query and I want to see if I can convert those dates into a week number
Rabbie Super Moderator Local time Today, 20:27 Joined Jul 10, 2007 Messages 5,906 Nov 10, 2008 #4 Look up the "Format" function in Access Help. You can use it to display a date as the week number.
Alansidman AWF VIP Local time Today, 14:27 Joined Jul 31, 2008 Messages 1,493 Nov 10, 2008 #5 Look at this earlier thread http://www.access-programmers.co.uk/forums/showthread.php?t=100699 Alan
R raskew AWF VIP Local time Today, 14:27 Joined Jun 2, 2001 Messages 2,734 Nov 10, 2008 #6 As was already pointed out, the Format() function will do it for you. Something like this: Code: ? date() 11/10/2008 ? format(date(), "ww") 46 Bob
As was already pointed out, the Format() function will do it for you. Something like this: Code: ? date() 11/10/2008 ? format(date(), "ww") 46 Bob
S Sed Registered User. Local time Today, 12:27 Joined Oct 16, 2008 Messages 111 Nov 10, 2008 #7 beautiful!!! it works thanks
S Sed Registered User. Local time Today, 12:27 Joined Oct 16, 2008 Messages 111 Nov 10, 2008 #8 Love you guys!!!