vote up 5 vote down star
1

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.

flag

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

6 Answers

vote up 4 vote down check

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

        var dateTime = DateTime.Now.AddBusinessDays(4);
link|flag
vote up -1 vote down

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|flag
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
vote up 0 vote down

This ought to be close:

public static DateTime AddWorkDays(DateTime date, int days) {
    if (date.DayOfWeek == DayOfWeek.Saturday) date = date.AddDays(2);
    else if (date.DayOfWeek == DayOfWeek.Sunday) date = date.AddDays(1);
    int weeks = days / 5;
    days -= 5 * weeks;
    date = date.AddDays(7 * weeks);
    while (days > 0) {
        date = date.AddDays(1);
        if (date.DayOfWeek != DayOfWeek.Saturday && date.DayOfWeek != DayOfWeek.Sunday) days--;
    }
    return date;
}
link|flag
This is incorrect, no? days -= 7 * weeks; – Jason Lepack Nov 10 '08 at 22:14
vote up 0 vote down
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|flag
vote up 2 vote down
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|flag
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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