Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
Asuod_
Contributor III
Contributor III

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
Specialist

@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
Specialist

@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_
Contributor III
Contributor III
Author

Thank you Matheus! Worked perfectly.