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: 
Manuel174102
Creator
Creator

I need to filter based in two conditions in where. How do I do that?

Hello people!

I need to filter based on two conditions in the data load editor. 

for example:

where sales_partner= "audi" and "number_code"=4

where sales_parter= "porsche" and "number_code"=6

how can i do that?

 

Labels (1)
1 Solution

Accepted Solutions
maxgro
MVP
MVP

maybe (audi 4 or porsche 6)

 

where

(

(sales_partner= "audi" and "number_code"=4)

OR

(sales_parter= "porsche" and "number_code"=6)

)

View solution in original post

2 Replies
maxgro
MVP
MVP

maybe (audi 4 or porsche 6)

 

where

(

(sales_partner= "audi" and "number_code"=4)

OR

(sales_parter= "porsche" and "number_code"=6)

)

Manuel174102
Creator
Creator
Author

thanks!