Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

22
votes
13answers
23k 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.
9
votes
1answer
265 views

How to strictly parse a date with only a year and a week number when the first day of this week is in the previous year?

My goal is to have a strict parsing (and forbid dates like '98/99' for example). However, the following code raises a java.text.ParseException with the message Unparseable date: "98/01": ...
9
votes
3answers
1k views

What's the best way to find the inverse of datetime.isocalendar()?

The Python datetime.isocalendar() method returns a tuple (ISO_year, ISO_week_number, ISO_weekday) for the given datetime object. Is there a corresponding inverse function? If not, is there an easy ...
6
votes
5answers
1k views

ISO-8601 week numbering vs “Outlook” numbering in PHP

I recently came across a big problem, as I have a system that's paying the customers weekly. As we all know, a year has 52 weeks, and there are standards for it. I'm using PHP aka date('W') to get ...
6
votes
8answers
18k views

Calculating days of week given a week number

Given a week number, e.g. date -u +%W, how do you calculate the days in that week starting from Monday? Example rfc-3339 output for week 40: 2008-10-06 2008-10-07 2008-10-08 2008-10-09 2008-10-10 ...
4
votes
1answer
52 views

Why is this date not in the week of the next year? (C# calendar)

I want to calculate the week number of a given date. DateTime date = Convert.ToDateTime("31.12.2001"); DateTimeFormatInfo dfi = DateTimeFormatInfo.CurrentInfo; System.Globalization.Calendar cal = ...
4
votes
4answers
2k views

get nth weekday of month in C# [closed]

Possible Duplicate: How do I determine if a given date is Nth weekday of the month? How do i get the nth weekday of the month? For ex.: 2nd Monday of "July 2010" = 07/12/2010. Looking ...
4
votes
4answers
11k views

How to get first day of a given week number in Java

Let me explain myself. By knowing the week number and the year of a date: Date curr = new Date(); Calendar cal = Calendar.getInstance(); cal.setTime(curr); int nweek = cal.WEEK_OF_YEAR; int year = ...
3
votes
4answers
145 views

Java: How do I get the date of x day in a month ( e.g. Third Monday in February 2012)

I am somewhat struggling with this. I want to setup my Calendar to let's say: Third Monday in February 2012. And I didn't find any way of doing this using Java. For example, if I wanted to set my ...
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
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
249 views

Get Weeks in SQL

I'm certain I'm overlooking something very basic here but I can't wrap my head around it after querying and googling for about an hour. I have a datetable already in existence, if that helps. It is ...
3
votes
5answers
1k views

How many weeks are inside of two dates

I have starting dates and ending dates in my database (MySQL). How can I get the answer, how many weeks(or days) are inside of those 2 dates? (mysql or php) For example I have this kind of ...
2
votes
1answer
210 views

Wrong “week of year” in Android

The number of "week of year" returned from a Date is wrong. This is my code: Calendar c = Calendar.getInstance(); c.setTime(my_date); int num_week = c.get(Calendar.WEEK_OF_YEAR); If my_date (type ...
2
votes
5answers
254 views

Python: Number of the Week in a Month

When specifying a date: datetime.datetime(2011, 8, 15) How can i get to know that this is the third week of the month? What if I want this dates? datetime.datetime(2011, 2, 28) //should return 4 ...
2
votes
1answer
602 views

how to create layout for dayview, weekview calendar?

I want to create layout like this: dayview dose anyone can tell me which layout should i used to make day view calendar like that. I'm going to using absolute layout to process with overlap widget ...
2
votes
2answers
832 views

How do I calulate week of year in Oracle using a non-standard first day of the week?

I have a query that needs to return the "week of year" of a date field but the customer of the query uses a non-standard first day of the week so TO_CHAR with 'IW' isn't returning the expected result. ...
2
votes
3answers
721 views

calculate calendar week

how can I calculate the calendar week? A year has 52/53 weeks and there are two rules: -USA -DIN 1355 / ISO 8601 I'd like to work with DIN 1355 / ISO 8601. How can I manage that? Edit: NSDate ...
2
votes
1answer
253 views

how to get week of year with friday as starting date using mysql

I'm struggling to get week of year (from 1 to 52) in mysql query using friday as starting date. My friend said just add current date with number (because friday is 5 and sunday as default starting ...
2
votes
1answer
608 views

Fluent NHibernate Mapping and Formulas/DatePart

i have a very simple table with a Datetime column and i have this mapping in my domain object. MyDate is the name of the datetime column in the DB. public virtual int Day { get; set; } public ...
2
votes
3answers
496 views

How to Remove the Last Week Of a Calendar

I am not sure why other people have not asked this before. But have you notice that the asp:Calendar shows an extra week at the end? For example if the VisibleMonth is set to 2010-03-01 and ...
2
votes
2answers
276 views

Obtain a date range from a single date

I can do this myself of course, but is there built-in functionality in Ruby, or a library, that would let me do something like this date = Time.now sunday = date.week.first_day saturday = ...
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
3answers
116 views

Getting first day of every week in 6 months

I'm trying to figure out how can I get the the first day of week for the last 6 months and can't get to a working solution. If I write date("Y-m-d 00:00:00", strtotime("-1 week", date("Y-m-d")); It ...
1
vote
2answers
163 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
3answers
354 views

jquery FullCalendar: changing the format of the day title in weekview

how can I change the formatting of the date in Fullcalendar -> weekview. It now says: Sun 7/24 Mon 7/25 Tue 7/26 Wed 7/27 Thu 7/28 Fri 7/29 Sat 7/30 I want to switch month and day around so it ...
1
vote
2answers
160 views

vb.net converting week to date?

I am developing an ASPX VB.NET file. My assignment is to convert an integer representing week of the year into that end date. For example, if user selects Week 4 for 2011, I want to get date = ...
1
vote
4answers
155 views

Working out the date a week ago using PHP, then finding values in a MySQL DB?

:) I have a MySQL table with two fields called "date" and "time". Is there a way I can work out a week ago and storing it to a variable, and then use it to look for any values in the table - which ...
1
vote
6answers
402 views

run php script once in a week

every Monday I need to empty few fields of a MYSQL database I have Firstly I thought about using a cron job, but my Web Hosting provider (fatcow.com) doesn't support neither SSH or Command Lines into ...
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
3answers
446 views

Get the Monday and Sunday for a certain DateTime in C#

I have a for example the date "2010-11-09, Thuesday" Now I want to get the datetime of the Monday and Sunday wherein lies the above stated date. How would you do that?
1
vote
4answers
746 views

C#: Get all week numbers from within 2 dates globalized/ISO 8601 compatible

I have a startdate 2010-01-01 (I just assume its a first day of the week) and an enddate 2010-07-31 (I just assume its a first day of the week) I want to have returned from a method all week ...
1
vote
1answer
351 views

Get entry by week number using Django ORM?

I tried something like: MyModel.objects.filter(year__week=1) It doesn't work. For now, I calculate the first day and the last day of the week and then use gte and lte, but it's less than efficient ...
1
vote
1answer
423 views

Get all the dates in a week of the selected date in jquery date picker?

I am creating a task list with number of hours worked to be entered against each task along each day of the week. So if a user clicks on a particular week dates then I need to get all the days' dates ...
1
vote
3answers
3k views

SQL to create table with weeks in period - having breaks at month's end (Oracle)

I need to create a table with the following structure: calendar week; week start date; week end date which contains all weeks beginning in 2007 until the current week. The special thing is, that ...
1
vote
2answers
488 views

MySQL joining four tables and using WEEK and DATEDIFF to get current data?

I'm trying to write a query getting information from four tables and I'm not able to figure it out. Can someone please help me with some guidance? The model is that a user can book a room for a ...
1
vote
6answers
2k views

MySQL Query to calculate Previous Week

I would like to calculate my total order amount in the previous week. I got the query for getting the data for the last 7 days from the current date. SELECT SUM(goods_total) AS Total_Amount FROM ...
1
vote
1answer
3k views

SQL GROUP BY week (Monday 07:00:00 to Monday 06:59:59)

I've created a query that groups production data on ISO week by using this query SELECT to_char(wid_date,'IYYY'), to_char(wid_date,'IW'), tonnes FROM production WHERE to_char(wid_date,'IYYY') = ...
0
votes
3answers
104 views

calculate number of weeks in a given year

I would like to get how many weeks does a current year have. Though 52 is accepted as a worldwide answer, if u see calendars for Dec 2015, 2020 & 2026, there are 53 weeks. (At least my Ubuntu ...
0
votes
2answers
111 views

get week start and end date from week number & year in android

I wish to get the start date & end date of the week if i have the week number & year for my android app. For example, if i pass the week number as 51 & year 2011, it should return me start ...
0
votes
0answers
34 views

CakePHP - Group by WEEK and User Column

I'm trying to create a line graph for a rating system. I have this working fine with a single employee but having some trouble with grouping when trying to return multiple employees. What I ...
0
votes
3answers
19 views

How to get data from mysql and group them in weeks, also separating by month

I have mysql database and is full of over 2 years of data. How can I make a query in a way that it will get the result as below?: January Week 1 ... data rows here .... Week ...
0
votes
1answer
65 views

How in Java find dates for previous 2 mondays?

May be like this: for(int i=0;i<15;i++){ Calendar cal = new GregorianCalendar(); cal.add(Calendar.DAY_OF_MONTH, -1); if (cal.Calendar.DAY_OF_WEEK==1){ System.out.println(cal.cal.getTime()) But ...
0
votes
3answers
69 views

Why is strtotime one week off?

strtotime("third Saturday October 2011") Should be 10/15/2011. However, it's coming up at 10/22/2011. I assume this is because October 2011 starts on a Saturday and PHP is looking at the first full ...
0
votes
2answers
48 views

how can you figure out the week from a single date

I am building a project and in that project the user is going to input a date eg. 8/2/2011. then i am going to show them the information for the week that contains 8/2/2011. How can you figure out ...
0
votes
1answer
158 views

Calendar icon on iPhone in another App

How can i add the Calendar icon with the date to another smart Calendar App that I just downloadet? PS: I am Jailbroken and know how to use SSH!
0
votes
3answers
308 views

Android week number wrong for phone but not Emulator

I have a program where it relies heavily on identifying the week number for the year. I have done the leg work and figured out all the problems that will cause and settle with this method. I works ...
0
votes
2answers
164 views

last week, this week (php)

i am making some statistics, i want to select the time from (last week only) and this week. for this week its easy: $start = strtotime('this week'); $finish = time(); for last week $start = ...
0
votes
2answers
321 views

How to show current week?

I'm trying to program an android app that show's the current week_of_the_year but haven't found anything similar to what I want, I've seen the date picker but that doesn't show the week numbers and ...
0
votes
2answers
455 views

How to get the right week of year number through a Calendar?

guys,i am confused by invoking the following method:Calendar.getInstance().get(Calendar.WEEK_OF_YEAR),the result got from that method is not right.Here is my Code: ...

1 2