Hi everyone,
I'm hoping this is easy to read, it is hard to explain.
I am trying to STOP counting days from commencement date of a project once the DONE box is checked.
I have managed to make it work without using NETWORKDAY, using this formula
=IF(Done1 = 1, [Last Updated]1 - [Commencement Date]1, TODAY() - [Commencement Date]1)
but I would rather count only Work Days.
I tried this:
=IF(Done14 = 1, NETWORKDAY([Last Updated]14 - [Commencement Date]14), IF(Done14 = 0, NETWORKDAY(TODAY() - [Commencement Date]14))))
Also tried this:
=IF(Done14 = 1, NETWORKDAY([Last Updated]14 - [Commencement Date]14), NETWORKDAY(TODAY() - [Commencement Date]14))))
and similar variations but it returns an error. Can anybody assist? Thanks in advance!