Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

WHERE condition


Hi,

I have two field values 'Exception' and 'Review'. How can I use these two field values in WHERE condition

like

Where Name='Exception','Review' but it's showing error.

could anyone help me.

thanks

Labels (1)
1 Solution

Accepted Solutions
MayilVahanan
MVP
MVP

HI

Try like this

Where match(Name,'Exception','Review' );

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.

View solution in original post

5 Replies
Not applicable
Author

Try this:

Where

  (Name = 'Exception') or

  (Name = 'Review');


Regards,


Gerrit


MayilVahanan
MVP
MVP

HI

Try like this

Where match(Name,'Exception','Review' );

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
CELAMBARASAN
Partner - Champion
Partner - Champion

Use Match

Where Match(Name,'Exception','Review')


Hope this helps

Not applicable
Author

Thanks very much

Not applicable
Author

Thanks