vote up 3 vote down star
2

How can I calculate/find the week-number of a given date?

flag

5 Answers

vote up 9 vote down check
System.Globalization.CultureInfo ci = System.Threading.Thread.CurrentThread.CurrentCulture;

Int32 weekNo = ci.Calendar.GetWeekOfYear(
    new DateTime(2008,12,31),
    ci.DateTimeFormat.CalendarWeekRule,
    ci.DateTimeFormat.FirstDayOfWeek
);

Be aware that this is not ISO 8601 compatible. In Sweden we use ISO 8601 week numbers but even though the culture is set to "sv-SE", CalendarWeekRule is FirstFourDayWeek, and FirstDayOfWeek is Monday the weekNo variable will be set to 53 instead of the correct 1 in the above code.

I have only tried this with Swedish settings but I'm pretty sure that all countries (Austria, Germany, Switzerland and more) using ISO 8601 week numbers will be affected by this problem.

Peter van Ooijen and Shawn Steele has different solutions to this problem.

link|flag
Very nice answer. Thanks – roosteronacid Sep 30 at 12:28
vote up 1 vote down
My.Computer.Info.InstalledUICulture.DateTimeFormat.Calendar.GetWeekOfYear(yourDateHere, CalendarWeekRule.FirstDay, My.Computer.Info.InstalledUICulture.DateTimeFormat.FirstDayOfWeek)

Something like this...

link|flag
vote up 1 vote down
  public static int GetWeekNumber(DateTime dtPassed)
  {
          CultureInfo ciCurr = CultureInfo.CurrentCulture;
          int weekNum = ciCurr.Calendar.GetWeekOfYear(dtPassed, CalendarWeekRule.FirstFourDayWeek, DayOfWeek.Monday);
          return weekNum;
  }
link|flag
vote up 1 vote down

Check out GetWeekOfYear on MSDN has this example:

using System;
using System.Globalization;


public class SamplesCalendar  {

   public static void Main()  {

      // Gets the Calendar instance associated with a CultureInfo.
      CultureInfo myCI = new CultureInfo("en-US");
      Calendar myCal = myCI.Calendar;

      // Gets the DTFI properties required by GetWeekOfYear.
      CalendarWeekRule myCWR = myCI.DateTimeFormat.CalendarWeekRule;
      DayOfWeek myFirstDOW = myCI.DateTimeFormat.FirstDayOfWeek;

      // Displays the number of the current week relative to the beginning of the year.
      Console.WriteLine( "The CalendarWeekRule used for the en-US culture is {0}.", myCWR );
      Console.WriteLine( "The FirstDayOfWeek used for the en-US culture is {0}.", myFirstDOW );
      Console.WriteLine( "Therefore, the current week is Week {0} of the current year.", myCal.GetWeekOfYear( DateTime.Now, myCWR, myFirstDOW ));

      // Displays the total number of weeks in the current year.
      DateTime LastDay = new System.DateTime( DateTime.Now.Year, 12, 31 );
      Console.WriteLine( "There are {0} weeks in the current year ({1}).", myCal.GetWeekOfYear( LastDay, myCWR, myFirstDOW ), LastDay.Year );

   }

}
link|flag
vote up -4 vote down

myDate.DayOfYear/7

link|flag
This would return 0 for early january and does not take into account that some countries use a rule that week 1 = 1st week with at least 4 days in the new year. Dec 31st could be in week 1 of the next year, Jan 1st could be in the last week of the previous year. – Hans Kesting Sep 30 at 15:30
It depends what you want to know. If you want a localized version of the week then this is definitely not the way to go. If you just want to know how many weeks have gone by between the start of the year and your date, then this will tell you (it's 0 based and ignores day of week). Re-reading the question, he does ask for week number, not number of weeks, so my answer is wrong. – Kendrick Oct 1 at 12:08

Your Answer

Get an OpenID
or

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