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

How to write an expression to limit what I see in a List Box

Good morning all,

I have created a listbox for a column that displays dollar values. How do i write an expression that will limit the records displayed to those that are greater than or equal to one million dollars?

Also, let me know if I need to adjust any other settings like the number settings to make this expression work.

Thanks in advance,

Steve

1 Reply
m_woolf
Master II
Master II

For your dimension:

if(Amt>=1000000,Field)

Or in the expression:

Sum(${<Amt={>=1000000}>}AMT)