5 days a week not 7 (1 Viewer)

steve111

Registered User.
Local time
Today, 20:54
Joined
Jan 30, 2014
Messages
429
hi,
I have an "eventstart" field AND a " periodfreq " field , a drop down box with ( periodtypeid)
1. days , weeks , month, quarter , year

and I have " recurringcount" field

this then gives me an end date for the recurrence to fininsh
with this formula below

PHP:
=IIf(([PeriodFreq] Is Null) Or ([PeriodTypeID] Is Null) Or ([RecurCount] Is Null),Null,DateAdd([PeriodTypeID],[RecurCount]*[PeriodFreq],[EventStart]))

at present it includes weekends,is it possible to change it so it does not include weekends

thanks
steve
 

jdraw

Super Moderator
Staff member
Local time
Today, 15:54
Joined
Jan 23, 2006
Messages
15,379
Research posts and google for "Workdays" or "Business Days".
 

Users who are viewing this thread

Top Bottom