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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
upaliwije
Creator II
Creator II

Expression

In my Pivot Table I have dimension field 'NOTE' ranging from 100 to 1000. I was to sum my fact field limiting note from 500 to 800 . Pls help me how to write this expression

Labels (1)
4 Replies
israrkhan
Specialist II
Specialist II

try like this,

Sum({<NOTE >=500 <=800>}FactField)  or

Sum({<NOTE >=500, NOTE <=800>}FactField)

upaliwije
Creator II
Creator II
Author

it is not working

Sum({<NOTE >=500, NOTE <=800>}BUDGET)

israrkhan
Specialist II
Specialist II

i think your field is text.

try like below

Sum({<NOTE >= {'500'}, NOTE <={'800'}>}BUDGET)


make sure NOTE is is Note. caps

Not applicable

try this

Sum({<NOTE={'>=$(500)<=$(800)'}>}BUDGET)