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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

About Pivot table display a sum of range

We have a expression like that

Sum({< account = {4171,4172} >} money)

Now, we need to sum a range of account like (5111,5112,......,5199)

How could I do ?

Thx........

1 Solution

Accepted Solutions
Not applicable
Author

Hi,

you have forgotten single quotes.

Try this: Sum({< account = {'>=4171 <= 5199'}<} money)

Regards vicky

View solution in original post

4 Replies
perumal_41
Partner - Specialist II
Partner - Specialist II

Sum({< account = {>=4171 <=5199} >} money) please this expression

Not applicable
Author

Sum({< account = {>=4171 <=5199} >} money)

Thanks for your reply but it have some problem from string ">=" .

Not applicable
Author

Hi,

you have forgotten single quotes.

Try this: Sum({< account = {'>=4171 <= 5199'}<} money)

Regards vicky

Not applicable
Author

Thank you very much