473,657 Members | 2,825 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Calculate date from week number

Hi
Im using GregorianCalend ar to find out the current years week numbers.
When the user chooses a week number in a dropdown i want to show that week
in a table with the corresponding dates.

For example : the user choses week43 (this week)
so somehow i must calculate what date is startdate that week (monday 18th).
How do i do this with c# ?

all i know is that its-
year: 2004
and week: 43

Ive been thinking about doing it the ugly way .. by taking weeknumber*7 to
get the day of year ... but that wouldnt be accurate since not all weeks have
7 days.

Then I thought about making a loop that goes thru all the days of the year
checking what week that date is in and if its 43 then jump out and return the
date.
But that would be very ugly ... and take unnecessary resources imo.
the Gregorian code is as follows :

GregorianCalend ar gCalendar = new GregorianCalend ar();
int YearNumber = gCalendar.GetYe ar(DateTime.Now );
string strMaxDate = YearNumber.ToSt ring() + "-12-31";

int MaxWeekNumber = gCalendar.GetWe ekOfYear(Conver t.ToDateTime(st rMaxDatum),
CalendarWeekRul e.FirstFourDayW eek, DayOfWeek.Monda y);

for(int r = 1; r < MaxWeekNumber+1 ; r++)
{
selectWeek.Item s.Add("Week " + r.ToString());
}
Nov 16 '05 #1
2 34343
Rustan wrote:
Hi
Im using GregorianCalend ar to find out the current years week numbers.
When the user chooses a week number in a dropdown i want to show that
week in a table with the corresponding dates.

For example : the user choses week43 (this week)
so somehow i must calculate what date is startdate that week (monday
18th). How do i do this with c# ?

all i know is that its-
year: 2004
and week: 43

Ive been thinking about doing it the ugly way .. by taking
weeknumber*7 to get the day of year ... but that wouldnt be accurate
since not all weeks have 7 days.
is that true?

Then I thought about making a loop that goes thru all the days of the
year checking what week that date is in and if its 43 then jump out
and return the date.
But that would be very ugly ... and take unnecessary resources imo.


What you could do:
- check day-of-week and weeknumber for jan 1st of that year
- note: might be in last week of previous year!
- from there calculate startday of week 1
- then add the required number of days ( (weeknum-1)*7), using AddDays()

Hans Kesting
Nov 16 '05 #2
Hi Rustan,

You might be looking for the AddWeeks method
http://msdn.microsoft.com/library/de...weekstopic.asp

This might work:
Initialize a new date time for the 1st of Jan for the required year and then
call the AddWeeks method.

HTH,
Rakesh Rajan

"Rustan" wrote:
Hi
Im using GregorianCalend ar to find out the current years week numbers.
When the user chooses a week number in a dropdown i want to show that week
in a table with the corresponding dates.

For example : the user choses week43 (this week)
so somehow i must calculate what date is startdate that week (monday 18th).
How do i do this with c# ?

all i know is that its-
year: 2004
and week: 43

Ive been thinking about doing it the ugly way .. by taking weeknumber*7 to
get the day of year ... but that wouldnt be accurate since not all weeks have
7 days.

Then I thought about making a loop that goes thru all the days of the year
checking what week that date is in and if its 43 then jump out and return the
date.
But that would be very ugly ... and take unnecessary resources imo.
the Gregorian code is as follows :

GregorianCalend ar gCalendar = new GregorianCalend ar();
int YearNumber = gCalendar.GetYe ar(DateTime.Now );
string strMaxDate = YearNumber.ToSt ring() + "-12-31";

int MaxWeekNumber = gCalendar.GetWe ekOfYear(Conver t.ToDateTime(st rMaxDatum),
CalendarWeekRul e.FirstFourDayW eek, DayOfWeek.Monda y);

for(int r = 1; r < MaxWeekNumber+1 ; r++)
{
selectWeek.Item s.Add("Week " + r.ToString());
}

Nov 16 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
17909
by: CrystalDBA | last post by:
I am using SQL Server 2000. I need to query my database for all the contracts that came in during a certain time frame (user is prompted for reportingperiodid). Table - Periods Fields - Reporting Period id int Reporting Period desc varchar(30) Reporting Period Begin Date datetime Reporting Period End Date datetime
1
13127
by: David | last post by:
Can someone help me with this. I need to calculate the week ending date of the first week of the year based upon a year provided by the user. Is there a simpler way other than writing my own UDF?
3
3112
by: | last post by:
Hello, I am hoping someone else has thought about a date time calculation i need to perform. I would like to be able to calculate the number of "working minutes" between 2 dates, given my working week definition. Lets say I have a working week definition of Monday through Friday, 9 am to 5 pm. Date1 = January 1st, 2005 at 8 am
9
3235
by: griemer | last post by:
Hi every one, Is there a way to calculate the timestamp of 00:00:00 last Sunday. For me, this is the begin of the current week.. Or, how old is this week, in seconds Any ideas? Regards,
5
6501
by: Michael R. Copeland | last post by:
I need to determine a given date's week number, but my searches of google only confuse and frustrate me: there are many apparent formulas (which are pretty complex) and they all seem to require several supporting libraries or subprograms. It doesn't seem to be all that complex, so I assume I'm getting the wrong "hits" on my searches. I have year (ccyy), month, and day, and I can derive the ordinal year (yyddd) without difficulty, but I'm...
4
4701
by: khicon73 | last post by:
Hello All, I would like to calculate weeknumber and period from first day of the week (sunday) and last day of the week (saturday) and week number falls from 1 to 52 only. If week number >= 53 then week number will equal to 52. And Last Day of First week is the first Saturday of January, as long as it falls at least four days into the month Example: if enter Date WeekNo. Period 12/31/06 1 12/31/06-01/06/07 01/05/07 1 12/31/06-01/06/07...
0
4633
by: SuzK | last post by:
I am trying to calculate in VBA in Access 2002 a moving average and update a table with the calculations. Fields in my WeeklyData table are Week Ending (date) ItemNbr (double) Sales Dollars (double) Sales Units (double) Promo (Text) -- is null or "X" AvgWklyDollars (double) AvgWklyUnits (double) I have a vba module which I thought would work, but it doesn't. I think the problem is an embedded SQL Totals Top 8 query, which doesn't...
4
10821
by: Vince | last post by:
Given a week Number, how do I calculate the date that for the Monday of that week?
15
6420
by: student4lifer | last post by:
Hello, I have 2 time fields dynamically generated in format "m/d/y H:m". Could someone show me a good function to calculate the time interval difference in minutes? I played with strtotime() but but that only gave me difference in hours and only if the times were on the same day (after wrapping with date() function). TIA
0
8833
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8737
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8509
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8610
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6174
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5636
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4168
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
2
1967
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1730
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.