Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
xiaojunzai
Contributor III
Contributor III

How to use multiple field values to determine in a not exists statement

How to use multiple field values to determine in a not exists statement,eg:

 

             a             b              c
123

4

4

4

5

6

6

4

6

7

5

5

8

4

6

9

I want the result

exists  a=4 and b=5 and c=6

please help me,thank you!

3 Replies
sunny_talwar

Where do you want this? Script or front end? and you want where exist or where not exist?

xiaojunzai
Contributor III
Contributor III
Author

Hi Sunny,I appreciate your apply quckly!

The statement i wanted in script and the result i want was exists a=4 and b=5 and c=6!

Thank you very much!

sunny_talwar

Not sure I understand completely, but have you tried this

LOAD a,

     b,

     c

FROM ....

Where a = 4 and b = 5 and c = 6;