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: 
Anonymous
Not applicable

Filter multiple values in script

Hi All,

I am looking filter multiple values in script, i tried using Where [Employment Status]='Permanent' and 'Contract'

Where [Employment Status]='Permanent'and  [Employment Status]='Contract'

Where [Employment Status] in (Permanent','Contract')

Where match( [Employment Status] , Permanent','Contract')

what will be the correct syntax?

Thanks,

Krishna

Labels (1)
1 Solution

Accepted Solutions
MK_QSL
MVP
MVP

Where Match(FieldName,'FirstValue', 'SecondValue', 'ThirdValue');

View solution in original post

4 Replies
Kushal_Chawda
MVP
MVP

Where match( [Employment Status] , 'Permanent','Contract')


Filter values are case sensitive so make sure that Filter Values matching with actual data

MK_QSL
MVP
MVP

Where Match(FieldName,'FirstValue', 'SecondValue', 'ThirdValue');

Kushal_Chawda
MVP
MVP

krishna4bo‌  was that not working which I have suggested?

MK_QSL
MVP
MVP

kush141087‌'s answer correct and my answer as helpful. He has replied before me.