Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
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

1 Solution

Accepted Solutions
MayilVahanan

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

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