473,473 Members | 2,170 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

calculate weekdays

Is there a way to calculate the total number of weekdays when provided a
date?

Example:
If I have a start date of 7/11/2008 and I want to go out 10 days, I want to
get this:

6 weekdays
4 weekend days

Is something like this possible?
Jul 11 '08 #1
2 1934
"Mike" <mo******@gmail.comwrote in message
news:eD****************@TK2MSFTNGP03.phx.gbl...
Is there a way to calculate the total number of weekdays when provided a
date?

Example:
If I have a start date of 7/11/2008 and I want to go out 10 days, I want
to get this:

6 weekdays
4 weekend days

Is something like this possible?
Simple enough with a bit of programming

Instantiate a DateTime variable from the starting date.

Set up a while loop which increases the DataTime variable using the
AddDays(1) method for the required number of iterations.

At each iteration, inspect the DataTime variable's DayOfWeek property. If it
equates to DayOfWeek.Saturday or DayOfWeek.Sunday, treat it differently from
the other days. Of course, not every culture considers Saturday and Sunday
to be the weekend, so you might need to check for that...

http://dotnetguts.blogspot.com/2007/...mespan-in.html
--
Mark Rae
ASP.NET MVP
http://www.markrae.net

Jul 11 '08 #2
I'll give this a shot, Its for an internal app so Saturday and Sunday are
weekends.

"Mark Rae [MVP]" <ma**@markNOSPAMrae.netwrote in message
news:eL**************@TK2MSFTNGP06.phx.gbl...
"Mike" <mo******@gmail.comwrote in message
news:eD****************@TK2MSFTNGP03.phx.gbl...
>Is there a way to calculate the total number of weekdays when provided a
date?

Example:
If I have a start date of 7/11/2008 and I want to go out 10 days, I want
to get this:

6 weekdays
4 weekend days

Is something like this possible?

Simple enough with a bit of programming

Instantiate a DateTime variable from the starting date.

Set up a while loop which increases the DataTime variable using the
AddDays(1) method for the required number of iterations.

At each iteration, inspect the DataTime variable's DayOfWeek property. If
it equates to DayOfWeek.Saturday or DayOfWeek.Sunday, treat it differently
from the other days. Of course, not every culture considers Saturday and
Sunday to be the weekend, so you might need to check for that...

http://dotnetguts.blogspot.com/2007/...mespan-in.html
--
Mark Rae
ASP.NET MVP
http://www.markrae.net

Jul 14 '08 #3

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

Similar topics

2
by: Tiernan | last post by:
Hi all I'm looking for a way to find the number of weekdays between 2 dates In my form I have three fields for a begin date (dd)(mm)(yyyy) and three for the end date (dd)(mm)(yyyy) Now these...
2
by: JP SIngh | last post by:
Hi All I need to calculate the number of working days between the two dates entered on an ASP page. I am not that great a coder in ASP and was wondering if someone can help. Basically the...
5
by: SimonC | last post by:
Help needed for a Javascript beginner. As above in the subject... i need a javascript to run this, but not in the form of a web-page. I want to calculate it between 2 fields in a database that...
1
by: Htk | last post by:
I have two date fields: -Inquiry Date -Action Date I'm trying to use a query expression on this. Using the datediff expression, I can get the amount of days that seperate the two dates. But I...
1
by: Chris Hill via .NET 247 | last post by:
Hi I'm a jnr developer in need of desparate help. Can anyone point me in the right direction for this problem: I calculate the number of days between 2 user defined dates like this: Dim...
0
NeoPa
by: NeoPa | last post by:
This code is quite old and may be bettered. If anyone feels they can produce better code for this function go ahead and PM me your effort. If I feel that it is better (More efficient & 100%...
8
by: atiq | last post by:
I am trying to restrict the user to only enter date which is weekdays. so, it shouldn't allow a date that is weekend such as 08/04/07 (Sunday). Can someone help me with this issue. In short i want...
4
by: MLH | last post by:
I'm thinking of an integer field in which I could write values up to 1+2+4+8+16+32+64 and to use these values later. Each of the individual values would represent a weekday from Sunday to Saturday....
1
by: bharathreddy | last post by:
This article will explain how we can get the count of weekdays in between two dates. This will be usefull if we want to count the number of working days between two dates. Example: -------------...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
1
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...
0
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...
1
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...
0
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...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
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...

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.