Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
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.