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: 
nikhilgarg
Specialist II
Specialist II

Script prob

Hey,

My script is:

Load CityId,

Cityname

CountryCode

from abc.qvd ;

i want to apply condn where Country Code = US and CA

I applied like:

Load CityId,

Cityname

CountryCode

from abc.qvd  where CountryCode = {'US' , 'CA'} ;  but giving error.

Labels (1)
10 Replies
tresB
Champion III
Champion III

No.  'CountryCode = Match(CountryCode, 'US', 'CA') ;   Try exactly how I showed above. For clearing doubt, read help for Match()