Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
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)