up vote 6 down vote favorite
2
share [g+] share [fb]

Given a date how can I add a number of days to it, but exclude weekends. For example, given 11/12/2008 (Wednesday) and adding five will result in 11/19/2008 (Wednesday) rather than 11/17/2008 (Monday).

I can think of a simple solution like looping through each day to add and checking to see if it is a weekend, but I'd like to see if there is something more elegant. I'd also be interested in any F# solution.

link|improve this question

Are you going to be adding a small number of days or millions of days? – Jason Lepack Nov 10 '08 at 21:51
2  
Just letting you know - as soon as you tell them that excluding weekends is no problem, they're going to want holidays, too. Think about that before you implement anything. – dnord Nov 10 '08 at 22:12
+1 to check about holidays too – Eduardo Molteni Nov 10 '08 at 22:51
feedback

5 Answers

up vote 6 down vote accepted

using Fluent DateTime http://fluentdatetime.codeplex.com/

        var dateTime = DateTime.Now.AddBusinessDays(4);
link|improve this answer
a better O(1) solution can be found here: stackoverflow.com/questions/1044688 – Marco M. Aug 17 '10 at 14:27
feedback
int daysToAdd = weekDaysToAdd + ((weekDaysToAdd / 5) * 2) + (((origDate.DOW + (weekDaysToAdd % 5)) >= 5) ? 2 : 0);

To wit; the number of "real" days to add is the number of weekdays you're specifying, plus the number of complete weeks that are in that total (hence the weekDaysToAdd / 5) times two (two days in the weekend); plus a potential offset of two days if the original day of the week plus the number of weekdays to add "within" the week (hence the weekDaysToAdd mod 5) is greater than or equal to 5 (i.e. is a weekend day).

Note: this works assuming that 0 = Monday, 2 = Tuesday, ... 6 = Sunday. Also; this does not work on negative weekday intervals.

link|improve this answer
feedback
public DateTime AddBusinessDays(DateTime dt, int nDays)
{
    int weeks = nDays / 5;
    nDays %= 5;
    while(dt.DayOfWeek == DayOfWeek.Saturday || dt.DayOfWeek == DayOfWeek.Sunday)
    	dt = dt.AddDays(1);

    while (nDays-- > 0)
    {
    	dt = dt.AddDays(1);
    	if (dt.DayOfWeek == DayOfWeek.Saturday)
    		dt = dt.AddDays(2);
    }
    return dt.AddDays(weeks*7);
}
link|improve this answer
feedback

Given the number of the original day in the year D and original day in the week W and the number of workdays to add N, the next weekday number is

W + N % 5.

The next day in the year (with no wraparound check) is

D + ((N / 5) * 7) + N % 5).

This is assuming that you have integer division.

link|improve this answer
Why the down-vote? Does this yield an incorrect result? – DOK Nov 10 '08 at 22:33
I don't see any obvious flaw with my answer. Leaving a comment saying what's wrong would be helpful. – gnud Nov 11 '08 at 1:07
I didn't downvote but several people have suggested this algorithm and it looks wrong to me. What happens when you add 1 business day to a Friday? n/5*7 is zero and n%5 is one so you add one and get a Saturday but the correct answer is Monday. – Jon Harrop Mar 26 '11 at 10:15
feedback

Formula will be : Workday(date,no.of days,(weekday(1))) Try this .This will help and let me know it works or not at sandeep6363@gmail.com

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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