Not if it relates to payroll!!!!
<vbg>
: Shouldn't it go forward one day if it lands on a holiday (q for xgirl;
: really)?
:
: --
:
: HTH
:
: RP
: (remove nothere from the email address if mailing direct)
:
:
: : > This formula uses NETWORKDAYS to determine whether 8 days in the future
: falls
: > on a work day. If so, use that date; otherwise, start with the date+8 and
: back
: > up one workday (using the WORKDAY function to find that date).
: >
: >
: =IF(NETWORKDAYS(A1+8,A1+8,HolidayList)=1,A1+8,WORKDAY(A1+8,-1,HolidayList))
: >
: > If the formula gives you a #NAME! error, look at help for either function
: on
: > how to install the ATP.
: >
: >
: > On Thu, 31 Mar 2005 14:25:11 -0800, "xgirl"
: <
[email protected]>
: > wrote:
: >
: > >Let me explain in more detail ... I have a date in A1. Based on that
: date I
: > >have to count ahead 8 calendar days to determine a due date. BUT ~ If
: that
: > >date falls on a Saturday or Sunday then I need the due date to fall back
: to
: > >Friday and if it lands on a holiday, I need it to fall back to the
: previous
: > >working day. Thanks to you both for your help, I've definitely learned
: from
: > >your comments.
: >
:
: