vote up 0 vote down star

Examples:

'DD/MM/YYYY
"1/1/2009" should give `1`
"31/1/2009" should give `5`
"1/2/2009" should also give `5`

Format("1/2/2009", "ww") returns 6.

So, how can I get the correct result?

flag

3  
It's simply counting sunday as the first day of the week, not monday. – roe Oct 30 at 13:06

5 Answers

vote up 6 vote down check

It's doing two things here which don't match your expectations, I think: Assuming you want the week with Jan 1 in as week 1, and using Sunday as first day of the week So it has week 1 running from Sunday 28th December 2008 to Saturday 3rd Jan 2009.

Week 6 would begin on Sunday 1st Feb by this method.

The ISO standard is for week 1 to be the one containing 4 days of January, or the first Thursday of the year (different ways of expressing the same thing). You can specify this method of calculation and the first day of the week:

Format(SomeDate,"ww",vbMonday,vbFirstFourDays)

see here for syntax: http://office.microsoft.com/en-us/access/HA012288391033.aspx

link|flag
+1, this is the complete answer. I hope you don't mind the cosmetic edit. – Henk Holterman Oct 30 at 13:31
Not at all, and I now got round to updating my profile info as well so I have a proper name (I just popped by from superuser.com and signed up to answer this one) – AdamV Oct 30 at 13:38
rondebruin.nl/isodate.htm is another good reference for ISO – dkusleika Oct 30 at 14:02
AdamV, you clarified the issue. Thank you. – Nick D Oct 30 at 14:02
vote up 3 vote down

This might work: Format(YourDate, "ww",vbMonday)

link|flag
oh, I see. Thanks Sosh. It works now :-P – Nick D Oct 30 at 13:25
@Sosh: I am curious to see what the OP expects for 01/05/09 (Jan 5th 09)? I think OP might expect Jan 5th to be week 1 whereas it will be week 2 as per your example. – shahkalpesh Oct 30 at 13:30
There is also a firstweekofyear argument for the format function: vbUseSystem, vbFirstJan1, vbFirstFourDays, vbFirstFullWeek – Remou Oct 30 at 13:34
@shahkalpesh, I expect 2 and I get 2. – Nick D Oct 30 at 13:38
@Nick: Sosh is right in that case. The week starts from Monday as per your example. – shahkalpesh Oct 30 at 13:44
vote up 2 vote down

Regardless of the day of the week your week starts on, you need to pass unambiguous date values. "31/1/2009" can only be one date (Jan 31st), but "1/2/2009" could be Jan. 2 (US style) or Feb. 1st (everybody else who has more sense that we USAns).

In this case, I'd use DateSerial() to make sure the date is not misinterpreted:

  Format(DateSerial(2009,2,1), "ww", vbMonday)

While this is not causing your problem, because Access helpfully utilizes your system's localized date settings, I think it's something you should do anyway. You certainly are forced to do so in SQL in Access, so I don't think it's a bad habit in code and expressions.

link|flag
Thanks David. I'll keep that in mind. – Nick D Oct 31 at 5:45
vote up 1 vote down

There is a whole standard for week numbers: ISO-8601

http://en.wikipedia.org/wiki/ISO%5F8601#Week%5Fdates

link|flag
1  
Yes, but not all clients (countries) use that. – Henk Holterman Oct 30 at 13:27
vote up 0 vote down

If sunday is the first day of the week (as it is in some locales) then 6 is the correct weeknumber for "1/2/2009" (february 1. 2009)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.