I am trying to create a custom metric that counts the number of tickets where a custom attribute is TRUE.
I created a custom attribute that states: IF (VALUE(First reply time (min)) <= 480) THEN "TRUE" ELSE "FALSE" ENDIF
This works great and I can apply it as a filter on a report and select TRUE or FALSE to show accordingly.
What I would like to do is create a custom metric that counts the number of TRUE tickets based on that attribute. The reason I don't want to use a filter is that I want to show both the total tickets and the total that are TRUE in the same report.
The formula I tried is: COUNT_VALUES([First Reply Time SLA Attribute - Low]="TRUE")
This seems to show all tickets, not just the ones where it equals TRUE.
Is there a formula that will work here?