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

Announcements
Qlik and ServiceNow Partner to Bring Trusted Enterprise Context into AI-Powered Workflows. Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
BI_Dev
Creator II
Creator II

How can I use sum in Filter pane ?

Is there a way to add sum in Filter pane in Qliksense ?

I want to use the below expression in Filter pane and need the 2 options (Locations > $15k & Locations < $15k)  selectable from the filter.

 

= if(sum([Annual Expense])>= '15000', 'Locations > $15k',
    if(sum([Annual Expense])< '1 5000', 'Locations < $15k'))

 

 

Labels (2)
2 Replies
agigliotti

maybe this:
=aggr( if( sum([Annual Expense])>= 15000, 'Locations > $15k', 'Locations < $15k'), Locations )

ChiragPradhan
Creator II
Creator II

Hi,

I don't think it is possible. You would be better off creating this field in the data model.

Regards,

Chirag