Forum Discussion
DnGr
Dec 31, 2024Copper Contributor
Date
I have this formula that returns the total days =NETWORKDAYS.INTL(E19,F19,"0000000") If I have dates (E19)12/01/2024,(F19)12/2/2024 the formula returns a value of 2, which is what I want,. What I n...
- Jan 02, 2025
=IF(OR(E19:F19=""), "", F19-E19+1)
HansVogelaar
Jan 02, 2025MVP
=IF(OR(E19:F19=""), "", F19-E19+1)