Converting dates to week number

Sed

Registered User.
Local time
Today, 12:27
Joined
Oct 16, 2008
Messages
111
Anybody knows how to convert dates to 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
 
Look up the "Format" function in Access Help. You can use it to display a date as the week number.
 
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
 

Users who are viewing this thread

Back
Top Bottom