Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I currently have 2 graphs which give me the 25th and 99th percentile of order cycle time. The Dimension is Closed Month and the expression is
Fractile
(Status_WorkingHours_Cal,0.99)
which works. But the user wants to be able to type in different numbers which in turn will change the percentile of the graph. For example they could time in 20 and 90 and the two graphs will change to show the 20 percentile in one and the 90 percentile in the other. Is it possible to do this?
You can do it with a variable as an input box. Just make your formula Fractile(Status_WorkingHours_Cal,$(VariableName))
Also, it may be easier for the user for them to enter an integer in the input box, then you could have a second variable divide that variable by 100 and refer to the second variable in your formula. Just a thought.