Creating a custom attribute to filter the underlying data with a 95% distribution
This is the custom calculated attribute that I'm trying to use to filter out the data set within a range of 2 standard deviations from the mean (in other words, a 95% distribution):
IF VALUE(First reply time - Business hours (min)) > (AVG(First reply time - Business hours (min)) - (2*STD_DEV(First reply time - Business hours (min))))
AND VALUE(First reply time - Business hours (min)) > (AVG(First reply time - Business hours (min)) - (2*STD_DEV(First reply time - Business hours (min))))
THEN [Ticket ID] ENDIF

Out of this specific context, how do we use statistical distributions to slice our data?
