Hi, I am using values from different sheet to calculate duration. However, the other sheet does not have values at all time, it may be blank, 0 or output an error. How can output a blank field when my formula comes across such a field.
current formula that works fine with fields that DO have values:
=AVG(COLLECT({Incident Duration}, {Month}, "December", {Calculations Range 3}, 2022))
Using this same formula, I'd also like to add some "error if" statment that takes into consideration the following values in the other page:
It can be smthg like, If incident duration is blank, then output blank in =AVG(Collect).. field
I attempted this but does not work:
=AVG(COLLECT({Incident Duration}, {Month}, "February", {Calculations Range 3}, 2023, IFERROR({Incident Duration}, " ", " ")))
I want to incorporate the IFERROR within the same AVG(COLLECT) statement above