Skip to main content
Announcements
July 15, NEW Customer Portal: Initial launch will improve how you submit Support Cases. IMPORTANT DETAILS
cancel
Showing results for 
Search instead for 
Did you mean: 
camila1
Contributor
Contributor

Filter Pane Chart

HI! There is a way to create a filter pane that shows the delay greater than 30 and greater that 15?
2 Replies
Kashyap_R
Partner - Specialist
Partner - Specialist

Hi

I think u can just create a bucket in script or as master dimension or inside the filter itself

you can use this expression

if(delay>=0 and delay<=15 ,'less than or equal to 15',

if(delay>=16 and delay<=30 ,'16-30',if(delay>=31  ,'greater than 30')))

Hope my understanding is correct and this solves your issue.

Thanks and Regards

Kashyap.R

 

Thanks and Regards
Kashyap.R
NitinK7
Specialist
Specialist

you can create master dimension using below script and use this in your filter pane 

 

Delay greater than or equal to 30-

Aggr(only({<delay={">=30"}>}delay),delay)

NitinK7_0-1648711749804.png