Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

22
votes
13answers
22k views

Calculate date from week number

Anyone know an easy way to get the date of the first day in the week (monday here europe). I know the year and the week number? I'm going to do this in C#. Thanks in advance.
18
votes
6answers
4k views

How to get week number in Python?

How to find out what week number is this year on June 16th (wk24) with Python?
11
votes
6answers
2k views

Is .NET giving me the wrong week number for Dec. 29th 2008?

According to the official (gregorian) calendar, the week number for 29/12/2008 is 1, because after the last day of week 52 (i.e. 28/12) there are three or less days left in the year. Kinda weird, but ...
10
votes
5answers
642 views

Why dec 31 2010 returns 1 as week of year?

For instance: Calendar c = Calendar.getInstance(); DateFormat sdf = new SimpleDateFormat("dd/MM/yyyy"); c.setTime( sdf.parse("31/12/2010")); out.println( c.get( Calendar.WEEK_OF_YEAR ) ); Prints ...
9
votes
2answers
415 views

Get date from ISO week number in Python

I have a year and an ISO week number, and I need to translate this to the date of the first day in that week (Monday). How can I do this? datetime.strptime() takes both a %W and a %U directive, but ...
8
votes
2answers
375 views

In .net, knowing the week number how can I get the weekdays date?

I want to create a function in C# which for a week number will return me the days, in that week. For instance for week number 40, how can I get the days: 4/10, 5/10, 6/10, 7/10, 8/10, 9/10, 10/10. ...
7
votes
2answers
10k views

How do you get the “week start date” and “week end date” from week number in SQL Server?

I have a query that counts member's wedding dates in the database... Select Sum(NumberOfBrides) As [Wedding Count], DATEPART( wk, WeddingDate) as [Week Number], DATEPART( year, WeddingDate) ...
4
votes
1answer
1k views

Joda time week calculation reasoning

The code below demonstrates the problematic joda-time implementation of week calculation. This behavior is not a bug but a design decision Joda-Time uses the ISO standard Monday to Sunday week. ...
3
votes
2answers
135 views

How can I determine the week number of a certain date?

I'm trying to make a calendar using wpf. By using itemsPanel and more, I have a grid with 7 columns(sunday-saturday) and 6 rows(week# of month). If i can find the starting position of the first of ...
3
votes
1answer
200 views

Week-number in PHP, again

We are using the ISO 8601-standard to show week numbers here in Sweden. Most people seems to be confused about this standard that week 1 can be in the former year. I am aware of this. I have ...
3
votes
2answers
104 views

What is the nicest way to select the current week in MySQL

At the moment I have something like this... SELECT SUM(a.PaidSingle) AS PaidSingle, DATE_FORMAT(a.TimeIn, '%a') AS weekDay FROM Attendance AS a JOIN MemberDetail AS m ON m.id = a.MemberID ...
3
votes
4answers
1k views

Group by Week of year (Week number) in Linq to SQL

In regular SQL i could do something like SELECT * From T GROUP BY DATEPART(wk, T.Date) How can i do that in Linq to SQL ? The following don't work From F In DB.T Group R By ...
3
votes
3answers
2k views

get week of month using javascript / jquery

How can i get the week number of month using javascript / jquery? For ex.: First Week: 5th July, 2010. / Week Number = First monday Previous Week: 12th July, 2010. / Week Number = Second monday ...
3
votes
2answers
164 views

Is there a way in javascript to create a date object using year & ISO week number?

I am trying to create a google annotated timeline viz. For that I need to input the date of the event. The only information I have is the year & the ISO week number for the event. Is there a way ...
3
votes
4answers
2k views

Flex, how to get week of year for a date?

I could not find a method in Flex Date object to get the week of year (1 to 52) What is the best way to find this? Is there any useful library for flex for such date operations like JodaTime in Java. ...
3
votes
3answers
2k views

Calendar.getActualMaximum(Calendar.WEEK_OF_YEAR) weirdness

Either I don't understand the method getActualMaximum(int) or the field WEEK_OF_YEAR, or there's a Sun bug involved (or all three)...could someone explain to me why (at least in a German locale...) ...
2
votes
4answers
133 views

How Can I get days of an specific Week in PHP?

In PHP you can get the number of week with 'date('W');' and it will return ISO-8601 week number of year Now how I can get the days of an specific week and the month(s) ? Update: For example I know ...
2
votes
5answers
629 views

python - Week number of the month

Does python offer a way to easily get the current week of the month (1:4) ?
2
votes
1answer
1k views

SQL Server - Get first date in a week, given the week number?

I've got a query (for use in bug tracker.net) that calculates the number of bugs by week by status. But the query returns the week number, what I really want is the first date of the week select ...
2
votes
9answers
966 views

Detect last week of each month with javascript

what would be a way in javascript to detect the last week of each (current) month. Or last monday of the month?
2
votes
1answer
705 views

Javascript algorithm that calculates week number in Fiscal Year

I have been looking for a Javascript algorithms that gives me the week number of a given Date object within a custom fiscal year. The fiscal year of my company starts on 1 September and ends on 31 ...
2
votes
1answer
229 views

Oracle SQL: Query results from previous X isoweeks () (where X might be > 52)

How could I adapt this query to show the previous, say, 61 weeks? select to_char(order_date,'IYYY') as iso_year, to_char(order_date,'IW') as iso_week, sum(sale_amount) from ...
2
votes
3answers
513 views

SQL to Return Results from Week 13 Year 2008 (not grouped)

I'm trying to use a Year-Week format in oracle SQL to return results only from a range of Year-Weeks. Here's what I'm trying SELECT * FROM widsys.train trn WHERE trn.WID_DATE>=TO_DATE('2008-13', ...
1
vote
1answer
20 views

Crash in NSDateComponents weekOfYear

I'm trying to get the number of the week of the year out of an NSDate with this code: int which = NSYearCalendarUnit | NSMonthCalendarUnit | NSHourCalendarUnit | NSMinuteCalendarUnit | ...
1
vote
1answer
58 views

Set week number of “1/2/2011(Sun)” as 52 of 2010?

How can I set week number of "1/2/2011(Sun)" as 52 of 2010? When I write as follows, it says week number is "1". Dim dtTest As Integer = DatePart(DateInterval.WeekOfYear, CDate("2012/01/02"), _ ...
1
vote
2answers
124 views

SQL Server not showing correct week numbers for given date

SQL Server is showing week 53 for first week of 2011 except 1th of January, and needs to be week 1. Below is the query and output: declare @T table (dt datetime) insert into @T values ...
1
vote
2answers
161 views

Week number to month

Given that I have the week number of a particular year, how do I get the month's name in which the week starts? (using Obj-c) e.g. Week 2 of 2009 should convert to January 2009 and Week 51 of 2004 ...
1
vote
4answers
283 views

Get DateTime for the nth Sunday after today

I'm using the following to get the current week number: var weekNo = CultureInfo.CurrentCulture.Calendar.GetWeekOfYear(DateTime.UtcNow, ...
1
vote
2answers
326 views

week function in proc sql

does any one know how to get weeknumber within sas proc sql ?
1
vote
1answer
666 views

jQuery: week of year script acting up

A while ago I needed a script to update some content every week, and my question was answered in this forum. -- Now, and I'm not a jQuery pro like you :), but the "problem" I have is that today (the ...
1
vote
0answers
252 views

Setting week number of year for Android Time Object

Is there any possibility to set the week number of the year (1-53) for a android.text.format.Time Object ? I didn't find any, so would I have to use the java.util.Calendar class instead? Isn't it ...
1
vote
1answer
395 views

Get next/previous ISO week and year in PHP

I need a function that takes an ISO week and an ISO year as parameter and returns the next ISO week and year (and a function that returns the previous ISO week/year). Is there an existing function ...
1
vote
3answers
534 views

How do I get date from week, working also with 53-week years? c#

I have made a function to cound the weeks in a year, and that works fine. The problem is that I need a method to get the mondaydate of the week. This is a swedish calendar. The code below works well ...
1
vote
4answers
675 views

datepicker.iso8601Week offset

I'm using datepicker.iso8601Week() to calculate the week from a selected date (in a jQuery UI datepicker). According to iso8601Week, a week goes from Tuesday-Monday, and I need it to go from ...
0
votes
2answers
81 views

algorithm for calculating a week # from a date with custom start of week? (for iCal)

I can only find algorithm for getting ISO 8601 week (week starts on a Monday). However, the iCal spec says A week is defined as a seven day period, starting on the day of the week defined to be ...
0
votes
3answers
72 views

System.Globalization.Calendar.GetWeekOfYear() returns odd results

I'm in the middle of calculating week numbers for dates, but the System.Globalization.Calendar is returning odd results for (amongst other years) December 31st of year 2007 and 2012. Calendar ...
0
votes
1answer
94 views

How do I build ISO Week Number DataTable programatically in C#?

Anyone know how to built DataTable of week no? I heard there has a lot of type of calculations for that, Gregorian or etc... My needs are ISO Week No and bind to datatable depends on week no. The ...
0
votes
2answers
36 views

Objective C NSCalendar dateFromComponents not handling week 53

The following code calculates the previous week number from a given week when passed year and week. NSDateComponents *components = [[NSDateComponents alloc] init]; [components setYear:year]; ...
0
votes
1answer
83 views

Calculating the number of weeks for each year based on dates using R

I have a dataset with dates of 2 different years (2009 and 2010) and would like to have the corresponding week number for each date. My dataset is similar to this: anim <- ...
0
votes
3answers
65 views

Calculating the number of weeks in a year with Ruby

Is there a way in Ruby to calculate the number of weeks(ISO 8601) for a given year? I'm currently using a lookup table and I'd like to stop using it.
0
votes
1answer
21 views

How can I get the Week Index (SUN-0…)

How can I get the Week Index like this SUN as 0 MON as 1 TUE as 2 WED as 3 THU as 4 FRI as 5 SAT as 6 from SQL Server. I have used this SELECT DATENAME(W,GETDATE()) But this will return the ...
0
votes
1answer
209 views

Joda time: Get max number of weeks for particular year

How do I get the maximum number of weeks for a particular year with Joda-Time?
0
votes
1answer
617 views

jQuery UI datepicker not showing week numbers

My jquery UI datepicker is not showing week numbers, even with the showWeek:true option set. Here is my code: <script type='text/javascript'> $(document).ready(function(){ ...
0
votes
2answers
1k views

Jquery flot and week numbers

I made a page to plot average snowdepth by week number. Now that we entered 2010, week 1 my graph stretches the interval on the x-axis (yearweek). What I want is the weeknumber on the x-axis ...
0
votes
4answers
924 views

Find out date of nth week's monday in PHP?

I have a simple situation where I have a user supplied week number X, and I need to find out that week's monday's date (e.g. 12 December). How would I achieve this? I know year and week.
0
votes
4answers
206 views

How can I find the week which a day belongs to using javascript?

I want to find the number of the week which a day belongs to in javascript. My definition of week is the number of saturdays there have been up to that date. So the first few days of january are ...
0
votes
3answers
159 views

Weeknumber print date out

Hallo all. if i have week number 42 and i need to know what dates there are in this week, can sombardy maby tell me a easy way to get this info? tanks a lot :)
0
votes
2answers
175 views

look up this week number?

I know how to look up this week number: (SELECT DATEPART(wk, GETDATE())) I need to know the syntax of getting the week number compare to another table: SYNTAX: SELECT THISWEEK -- WEEK NUMBER ...
0
votes
3answers
1k views

Get week of date from linq query

I am trying to get the week of a date from the database and compare it to a user selected value from a DateTimePicker. My users can select a day and I wrote a class that gives me the week of that day ...