Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi, I am using donut chart having division name as dimension and count({<status={'a','b','c'}>}id)
Now if select 'a' value in status filter the chart should change accordingly and if none selected from the filter it should take all 3 values from status.
Can anyone please help, how to achieve this in qliksense.
So you mean when selecting the value 'a' in the field, only 'a' is shown in the donut, otherwise 'a'/'b'/'c'.
I believe, you can use the dollar sign expansion:
count({$<status={'a','b','c'}>}id)
Use $ which generally used for selection in set Analysis. below expression has a,b,c . Should work on Selection of a or b orc
count({$<status={'a','b','c'}>}id).
Hope this help
Using the * wildcard character when specifying your filter in set analysis will allow you to change the value according to the user's selection, in addition to showing all listed values:
<status*={'a','b','c'}>
- Regards, Matheus