Hi, I have 3x check boxes marked as "in-progress", "On-Hold", "Closed".
I want to count the days the call is open which I have done with this formular:
=IF(OR([In-Progress]@row = 1, [On-Hold]@row = 1), NETWORKDAYS([Date Of Fault]@row, TODAY()))
Now if the Closed checkbox is ticked I would like to change the days mark with "Call Completed"
I have attempted this with a IF statement at the end of the formular
=IF(OR([In-Progress]@row = 1, [On-Hold]@row = 1), NETWORKDAYS([Date Of Fault]@row, TODAY())) IF(Closed@row = 0, "Call Completed", "ERROR"))
If I run a formula from the Closed Checkbox instead:
=IF(Closed@row = 0, [Days Open]@row = "Call Completed", "ERROR")
I get a Circular ref error on the Closed Checkbox
Can anyone assist.