Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Listbox with one option >1.000.000

Hello together,

I need your help.

I received a new requirement, i have a one column in a excel list with the tile amount.

amount
1.000
5.320.000
500

7.520.410

222.222

How can I show a Listbox in the qlikview document with the following content:

Listbox
>1.000.000

The Solution of the Qlikview should be, that all Amounts over 1.000.000 will be showable.

Do you have any solution, how I can fix the requirement.

Thank you.

Nikolaus80

1 Solution

Accepted Solutions
Not applicable
Author

if(Amount>1000000, '>1.000.00') as newfield

View solution in original post

3 Replies
alexandros17
Partner - Champion III
Partner - Champion III

In the listbox use the expression (at the bottom of fields's list)

and write

if(amount<=1000000,amount,'>1000000')

hope it helps

er_mohit
Master II
Master II

in your script you cn create a value for this like

if(amount>1.000.000,'>1.000.000') as Listbox

Not applicable
Author

if(Amount>1000000, '>1.000.00') as newfield