IF Formula w/ multiple conditions

RLJ

Active Member
Joined
Mar 15, 2011
Messages
417
Office Version
  1. 365
Platform
  1. Windows
I need the formula in column D to be modified so that when both Column C and E are blank, then Column D is also blank.

Book1
ABCDE
1Todays Date3/7/2024
2
3
4Widget #Widget typeAssigned DateDays from AssignmentCompleted
51Metal2/29/2024 3/7/2024
62Wood3/1/20245
73Plastic32399
Sheet1
Cell Formulas
RangeFormula
B1B1=TODAY()
D5:D7D5=IF(E5="",NETWORKDAYS(C5,$B$1),"")


Thank you for your help
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
Try this:

Excel Formula:
=IF(AND(C5="",E5=""),NETWORKDAYS(C5,$B$1),"")
 
Upvote 0
Try it like
Excel Formula:
=IF(AND(C5="",E5=""),"",NETWORKDAYS(C5,$B$1))
 
Upvote 0
Solution
Glad we could help & thanks for the feedback.
 
Upvote 0
Looks Like this works. Thank you
The marked solution has been changed accordingly. In your future questions, please mark the post as the solution that actually answered your question, instead of your feedback message as it will help future readers. No further action is required for this thread.
 
Upvote 0

Forum statistics

Threads
1,215,076
Messages
6,122,988
Members
449,093
Latest member
Mr Hughes

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