Skip to main content
Woohoo! Qlik Community has won “Best in Class Community” in the 2024 Khoros Kudos awards!
Announcements
Nov. 20th, Qlik Insider - Lakehouses: Driving the Future of Data & AI - PICK A SESSION
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.

10 Replies
tresesco
MVP
MVP

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