Workday function combined with If function help

ttanika

New Member
Joined
Feb 20, 2013
Messages
14
I have been working on this for a while and I can not figure it out.

G8= Student entry date
H8 = # of days in attendance
I8 = =IF(H8<=30,P8-H8,"Ineligible")
column I = the date students are eligible for 30 day release

P8 = =IF(G8>=1,G8+75,"")

column P = the date students are eligible for 75 day release

I need P8 to exclude weekends and holidays, so the 75 day release date will not include weekends and holidays. I tried to use the workday function. Can't figure it out. I have a list of the holidays on another sheet called Holidays.
 
Do you mind listing the holidays you are using?
 
Upvote 0

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
Nevermind, the formula was bad, this should work:

=IF(L8<=0,"Eligible",IF(L8="a",WORKDAY(P8,29,Holidays),IF(L8="b",WORKDAY(P8,44,Holidays),IF(L8="c",WORKDAY(P8,59,Holidays)," "))))
 
Upvote 0
Nevermind, the formula was bad, this should work:

=IF(L8<=0,"Eligible",IF(L8="a",WORKDAY(P8,29,Holidays),IF(L8="b",WORKDAY(P8,44,Holidays),IF(L8="c",WORKDAY(P8,59,Holidays)," "))))


THANK YOU SO MUCH! It works GREAT! I really appreciate all of your assistance on this!!!!
 
Upvote 0

Forum statistics

Threads
1,216,302
Messages
6,129,982
Members
449,548
Latest member
lharr28

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top