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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
anagharao
Creator II
Creator II

variables in sum filter not working

Hi All,

I cant seem to get the range selection right when i replace values with variables in a sum({}value) expression.

I've attached a example. The "Sales - Range" needs tweaking to work similar to "Sales - Values" with the difference of being dynamic.

1 Solution

Accepted Solutions
sunny_talwar

Try this:

=Sum({<RowNumber={"$(='>=' & $(lLimit) & '<=' & $(uLimit))"}>}Sales)

View solution in original post

3 Replies
trdandamudi
Master II
Master II

May be as below:

=SUM({<RowNumber={">=$('lLimit')<=$('uLimit')"}>}Sales)

sunny_talwar

Try this:

=Sum({<RowNumber={"$(='>=' & $(lLimit) & '<=' & $(uLimit))"}>}Sales)

anagharao
Creator II
Creator II
Author

Thank you !!