Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
ckoltam
Contributor III
Contributor III

Dinamyc selection on a filter in Qlik Sense

Hi,

I want to know if is possible to use set analysis on a filter in Qlik Sense to make the default filters dynamic.

Labels (6)
1 Solution

Accepted Solutions
RafaelBarrios
Partner - Specialist
Partner - Specialist

hi @ckoltam 

Yes, but you will need to combine the set expression with a aggr in other to get a list from the result

for example:

=date(aggr(only({< dv_year={2022},dv_month={'Jan'} >}dv_date),dv_date))

for a full two year date field, i will get a filter for only January 2022

 

another example:

https://community.qlik.com/t5/New-to-Qlik-Sense/Aggr-in-filter-pane/td-p/95563

 

Best,

View solution in original post

2 Replies
RafaelBarrios
Partner - Specialist
Partner - Specialist

hi @ckoltam 

Yes, but you will need to combine the set expression with a aggr in other to get a list from the result

for example:

=date(aggr(only({< dv_year={2022},dv_month={'Jan'} >}dv_date),dv_date))

for a full two year date field, i will get a filter for only January 2022

 

another example:

https://community.qlik.com/t5/New-to-Qlik-Sense/Aggr-in-filter-pane/td-p/95563

 

Best,

ckoltam
Contributor III
Contributor III
Author

Thank you @RafaelBarrios ! The link is very helpful.