Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Asuod_
Creator
Creator

Multiple Selection for aggr Filter

Hello

I am using the following script for a filter pane to only show all the fields for a specific table for this example its all fields from Table_data_2 but when I select a field to filter on it removes all other options in the filter dropdown list. Ive also tried concat instead of only function and it does the same thing. I want them to be able to select multiple fields to filter on. When I use $Field for the filter it does not have this problem. 

aggr(only({<$Table = {"Table_data_2"}>}$Field),$Field)

Labels (1)
1 Solution

Accepted Solutions
MatheusC
Specialist II
Specialist II

@Asuod_ 
see it like this

aggr(only({<$Table = {"Table_data_2"},Field=>}$Field),$Field)

Regarts, Matheus

Did you find a solution to your question? Mark the solution as accepted and if you found it useful, press the like button!

View solution in original post

2 Replies
MatheusC
Specialist II
Specialist II

@Asuod_ 
see it like this

aggr(only({<$Table = {"Table_data_2"},Field=>}$Field),$Field)

Regarts, Matheus

Did you find a solution to your question? Mark the solution as accepted and if you found it useful, press the like button!
Asuod_
Creator
Creator
Author

Thank you Matheus! Worked perfectly.