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.
Thank you for your help
Book1 | |||||||
---|---|---|---|---|---|---|---|
A | B | C | D | E | |||
1 | Todays Date | 3/7/2024 | |||||
2 | |||||||
3 | |||||||
4 | Widget # | Widget type | Assigned Date | Days from Assignment | Completed | ||
5 | 1 | Metal | 2/29/2024 | 3/7/2024 | |||
6 | 2 | Wood | 3/1/2024 | 5 | |||
7 | 3 | Plastic | 32399 | ||||
Sheet1 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
B1 | B1 | =TODAY() |
D5:D7 | D5 | =IF(E5="",NETWORKDAYS(C5,$B$1),"") |
Thank you for your help