I have a what I thought was a simple If / Or statement for calculating NETWORKDAYS in Ticketing sheet. Short explanation, when a ticket is opened it is assigned a SLA based on Priority (Critical=1, High=2, Medium=3, Low=4). While the ticket is open the Actual SLA is tracked by NETWORKDAYS. When the closed is closed the tracking is Actual stops and the calculation changes.
Open = Created Date-Today
Closed = Resolved Date-Created Date
Here is the calculation I am using, I cannot seem to find the error. Each separate piece works, but when I combine them I get an "Incorrect Argument Error".
=IF(OR([Tracking Status]@row = "Open", NETWORKDAYS([Created Date]@row - TODAY(), IF([Tracking Status]@row = "Closed", NETWORKDAYS([Resolved Date]@row - [Created Date]@row)))))
Thanks for any help