Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
awilson484
Contributor
Contributor

Filter/Remove

Hey All, 

I am trying to exclude some data that loads from a table. There are 5 different values included on the table, and I really only need 3 of them to show. We can call the table "Product" and the values could be: 

A

B

C

D

E

I only need A,B,C to load, not D and E. What function should I be using to exclude that data? 

1 Solution

Accepted Solutions
Seyko
Partner - Creator
Partner - Creator

Hello,

You can simply use a WHERE statement to exclude or select values we need . A another option, you can create a calculated dimension with a IF statement: = IF( Match(Field, 'A','B','C'), Field, NULL())

 

Excuse my english, i'm french!

View solution in original post

2 Replies
Seyko
Partner - Creator
Partner - Creator

Hello,

You can simply use a WHERE statement to exclude or select values we need . A another option, you can create a calculated dimension with a IF statement: = IF( Match(Field, 'A','B','C'), Field, NULL())

 

Excuse my english, i'm french!
awilson484
Contributor
Contributor
Author

Merci!