Hello,
I have been going at this for a while and not able to see what I may be doing wrong.
I am trying to count all EDAP Data Support issues which was created after 01/01/2023, which are still open ( not in Done or cancelled status)
Here is the formula Im using .
There is something wrong with the "CONTAINS(Category@row, @cell), "EDAP Support Issues"
The formula works without it
My formula
=COUNTIFS([Creation Date]:[Creation Date], @cell >= DATE(2023, 1, 1), CONTAINS(Category@row, @cell), "EDAP Support Issues", (Status:Status, NOT(OR(CONTAINS("Done", @cell), CONTAINS("Canceled", @cell))))
Note : The Categry field is a computed column. I was not sure if the summary metrics ( COUNTIFS) can be based of a computed column
Will really appreciate if anyone can help me