Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Pierremeesters
Contributor II
Contributor II

How do i exclude a value

Hi

i have an value called "aantal" and i want to exclude everything higher then 10.000. how do i do this? 

Labels (1)
1 Solution

Accepted Solutions
JordyWegman
Partner - Master
Partner - Master

Hi Pierre,

Where do you want to do this? In the front-end or the back-end?

It would help to give us a test application or some test data.

If your 'Aantal' is an actual value in the table you can use:

IF( Aantal > 10000
    , null()
    , Aantal
)

Cleaner is:

IF( Aantal < 10000
    , Aantal
)

Jordy
Climber

Work smarter, not harder

View solution in original post

2 Replies
JordyWegman
Partner - Master
Partner - Master

Hi Pierre,

Where do you want to do this? In the front-end or the back-end?

It would help to give us a test application or some test data.

If your 'Aantal' is an actual value in the table you can use:

IF( Aantal > 10000
    , null()
    , Aantal
)

Cleaner is:

IF( Aantal < 10000
    , Aantal
)

Jordy
Climber

Work smarter, not harder
rui24
Creator
Creator

Hi Pierremeesters

Try this:

if(aantal > 10000,

'-',

Status

)

Explanation: If the "aantal" selected is higher than 10000 will so "-" if is not higher will show the value