Nested IF Statements

QBERT

New Member
Joined
Oct 13, 2004
Messages
40
Office Version
  1. 365
Platform
  1. Windows
  2. MacOS
  3. Mobile
Here is my equation:

=IF((M5="","",IF((NETWORKDAYS.INTL(X5,M5,11,______!$O$4:$O$17))<1),"1",IF((NETWORKDAYS.INTL(X5,M5,11,______!$O$4:$O$17))>=1),(NETWORKDAYS.INTL(X5,M5,11,______!$O$4:$O$17),"False")))


What I am trying to do is as follows:

- If Cell M5 is Blank, display "Blank" its an empty cell

- If not I want it to calculate the network days.intl and display a value of 1 for any returned value less than 1

- Then if it is not less than 1 and equal to or greater than 1 I want it to display the actual value.


My syntax is flawed somewhere and I cannot figure it out. Any help is appreciated.
 
=IF(M5="","",NETWORKDAYS.INTL(X5,M5,11,$O$4:$O$17))

N.B. Edit the range for Holidays.
 
Upvote 0
try

=IF(M5="","",MAX(NETWORKDAYS.INTL(X5,M5,11,______!$O$4:$O$17),1))
 
Upvote 0
Your welcome and I just posted another question on one more Nested If equation I am trying to write.
 
Upvote 0

Forum statistics

Threads
1,226,876
Messages
6,193,460
Members
453,801
Latest member
777nycole

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