S
Sandy
Access 2000 on Win2000Pro
Check it out ...run this query:
SELECT
DatePart("yyyy",#1/1/2004#,1,2) & "wk" &
Format(DatePart("ww",#1/1/2004#,1,2),"00")
AS YearWeek;
....You get "2004wk53" ...not quite right (should be "2003wk53")
Am I going to have to write something to check
if month = 1 and week >52, then year = year-1 ???
There has to some way to get the right year--where the first week of the
year must have 4
days...
Check it out ...run this query:
SELECT
DatePart("yyyy",#1/1/2004#,1,2) & "wk" &
Format(DatePart("ww",#1/1/2004#,1,2),"00")
AS YearWeek;
....You get "2004wk53" ...not quite right (should be "2003wk53")
Am I going to have to write something to check
if month = 1 and week >52, then year = year-1 ???
There has to some way to get the right year--where the first week of the
year must have 4
days...