Week numbers

D

Dave

I am using the WW format in a query and was wondering if
there is any way to get the leading zero to display.
 
D

Dirk Goldgar

Dave said:
I am using the WW format in a query and was wondering if
there is any way to get the leading zero to display.

I reckon you could format the format:

SELECT Format(Format([YourDateField], "ww"), "00") As WeekNo ...
 
Top