Forum Discussion
charitos89
Sep 13, 2021Copper Contributor
NETWORKDAYS.INTL ERROR
Hello. I am facing a problem when i am using the NETWORKDAYS.INTL function. I want to count the workdays (Monday-Saturday) excluding the Sunday. So i am typing: =NETWORKDAYS.INTL(C153;D15...
- Sep 13, 2021
Do you mean that you see the formula in the cell instead of the result?
- Check whether the cell with the formula is formatted as Text. If so, format it as General. Then press F2 and Enter to recalculate it.
- If that was not the problem, activate the Formulas tab of the ribbon. If the 'Show Formulas' button is highlighted, click it to turn it off.
Juliano-Petrukio
Sep 13, 2021Bronze Contributor
This formula replaces the NETWORKDAYS.INT() formula
=SUMPRODUCT(N(WEEKDAY(C153+ROW(INDIRECT("1:"&D153-C153)))<>1))
1=Sunday
2=Monday
3-(...)