Hello
I am trying to make a formula that counts the average amount of time an active (open) issue takes, whilst segregating it by priority (low, medium, high).
To count the total amount I used this formula: =SUMIFS({Time to fix}; {Solved}; 0; {Priority}; "LOW")
However I want to make a new formula that counts the "time to fix" if the "solved" column is not checked, and if the "priority" is set to LOW.
I tried with this formula: =AVERAGEIF({Time to fix}; IF({Solved}; 0); IF({Priority}; "LOW"))
This however, doesn't work. Is there a way to make it work?, or is there a smarter way to accomplish my task?
Thank you in advance