Hello,
After much research and experimenting, I am still stuck on a formula for my status log. I am trying to create a formula that counts how many business days a task is past due. Therefore, the formula must check the due date, closed date, and status columns.
The formula currently reads as this: =IF(ISBLANK([Due Date]@row), "Date Not Provided", IF(Status@row = "Closed", "Closed", IF(NETWORKDAYS([Due Date]@row, [Closed Date]@row - 1) < 1, NETWORKDAYS([Due Date]@row, [Closed Date]@row))))
Any help / revisions would be much appreciated!!
Thank you.