Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Apply map in Inline

Hi All,

I have two inline table I want to use applymap function in Data table , so its possible to use it.

CountryNamesMap: 

MAPPING LOAD * INLINE [ 

ShortName, LongName 

ES, Spain 

US, United States 

]; 

 

Data: 

LOAD * INLINE [ 

CountryCode 

ES 

UK 

US,

]; 

Thanks,

Vijay

7 Replies
Not applicable
Author

Find the attachment

Anonymous
Not applicable
Author

where is the attachment?

Anonymous
Not applicable
Author

Got it.

Anonymous
Not applicable
Author

Thanks

Not applicable
Author

if you got your answer make the post as correct or helpful and close this thread,so other get right solution

sujeetsingh
Master III
Master III

MAP:

MAPPING LOAD * INLINE [

ShortName, LongName

ES, Spain

US, United States

];

Data:

LOAD * INLINE [

CountryCode

ES

UK

US,

];

Data1:

load

CountryCode

,applymap('MAP',CountryCode ) as FullName

resident Data;

Drop table Data;

sujeetsingh
Master III
Master III