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: 
Anonymous
Not applicable

Include NULL values in selection

Hi,

I have two fields (one is a set of keys, "Field_1" and the other one is a number field, "Amount"). I created a slider so that the user can select only rows that have an Amount less than or equal to a user-specified value. However if there are any rows that happen to have a NULL Amount, such rows should also be included in the resulting selection.

Please see attached sample qvw file.

Labels (1)
1 Solution

Accepted Solutions
sunny_talwar
MVP
MVP

Trigger on Field_1, rather than Amount itself using this search string

='=Sum(Amount) <= 60'

View solution in original post

2 Replies
sunny_talwar
MVP
MVP

Trigger on Field_1, rather than Amount itself using this search string

='=Sum(Amount) <= 60'

mdmukramali
Specialist III
Specialist III

Hi,

As per stalwar1 Reply, you can adjust your expression,

Clear field:

Field_1

Select In field:

='=Sum(Amount) <=$(vMaxValue)'