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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
venkatg6759
Creator III
Creator III

ignore current selection from Chart

Hi Everyone,

I am using the below expression

sum({$<Rating={">7"}>}Sales) / sum ( Total <[Entity Name]> Sales)

Chart should not change when user selects rating from list box ,but it should change to all other listboxes.

I tried using 1 instead of $ but no use , even

sum({$<Rating={">7"},Rating=>}Sales) / sum ( Total <[Entity Name]> Sales) 

Any Ideas,

Thanks,

Venkata

1 Solution

Accepted Solutions
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Try sum({$<Rating={">7"}>}Sales) / sum ({<Rating=>} Total <[Entity Name]> Sales)


talk is cheap, supply exceeds demand

View solution in original post

2 Replies
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Try sum({$<Rating={">7"}>}Sales) / sum ({<Rating=>} Total <[Entity Name]> Sales)


talk is cheap, supply exceeds demand
Anonymous
Not applicable

Try this:

sum({$<Rating={">7"}>}Sales) / sum ({<Rating = [1]::Rating>} Total <[Entity Name]> Sales)


Edit: The one above is less convoluted.  Use that.