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: 
MuraliPrasath
Creator III
Creator III

On Field selection filter should apply.

Hi Qlik,

I have a table chart when someone selects any Date filter, then my "Project Status" field should show only the Completed value only. else all the Project Status (Completed, In-progress, Not Started) should be displayed.

I tried below but no luck.

=if(GetFieldSelections([Date])>1,[Project Status]='Completed',[Project Status])

Labels (3)
1 Solution

Accepted Solutions
AronC
Partner - Creator II
Partner - Creator II

=if(GetFieldSelections([Date])>1, aggr(only({<[Project Status]='Completed'>}[Project Status],[Project Status]),[Project Status])

View solution in original post

3 Replies
AronC
Partner - Creator II
Partner - Creator II

=if(GetFieldSelections([Date])>1, aggr(only({<[Project Status]='Completed'>}[Project Status],[Project Status]),[Project Status])

MuraliPrasath
Creator III
Creator III
Author

Thanks AronC 🙂

AronC
Partner - Creator II
Partner - Creator II

@MuraliPrasath You might need to add nodistinct to make it work. 

=if(GetFieldSelections([Date])>1, aggr(nodistinct only({<[Project Status]='Completed'>}[Project Status],[Project Status]),[Project Status])