Forum Discussion
PAtesting
Feb 23, 2022Copper Contributor
=NETWORKDAYS formula?
Hello people, How do I use the =NETWORKDAYS and =IF formula together to add/substract ''1 day'' when the returned value is either <0 or >0? For example: If returned value from =NETWORKDAYS i...
- Feb 23, 2022
With dates in A1 and B1:
=(ABS(NETWORKDAYS(A1,B1))-1)*SIGN(NETWORKDAYS(A1,B1))
In Dutch:
=(ABS(NETTO.WERKDAGEN(A1;B1))-1)*POS.NEG(NETTO.WERKDAGEN(A1;B1))
HansVogelaar
Feb 23, 2022MVP
With dates in A1 and B1:
=(ABS(NETWORKDAYS(A1,B1))-1)*SIGN(NETWORKDAYS(A1,B1))
In Dutch:
=(ABS(NETTO.WERKDAGEN(A1;B1))-1)*POS.NEG(NETTO.WERKDAGEN(A1;B1))
- PAtestingFeb 24, 2022Copper ContributorHartelijk bedankt Hans!