Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
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

1 Solution

Accepted Solutions
MK_QSL
MVP
MVP

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

View solution in original post

4 Replies
Kushal_Chawda

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

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.