Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Need help with Resident load and apply map

Hi,

I'm a beginner in Qlikview and want to seek help on following script. Not sure why it is not working.

[New Product Approval New]

Load* APPLYMAP('Map_Region', [New Product Approval.Country_List]) As Region
Resident
[New Product Approval];
DROP
[New Product Approval New];

Thank you!

1 Solution

Accepted Solutions
preminqlik
Specialist II
Specialist II

once check, you are dropping your newly created table.....and write ", " after *

like below :

[New Product Approval New]:

Load *,

APPLYMAP('Map_Region', [Country_List],null()) As Region
Resident
[New Product Approval];

drop table [New Product Approval];

View solution in original post

4 Replies
jagan
Luminary Alumni
Luminary Alumni

Hi,

Try like this

Map_Region:

Mapping LOAD

*

FROM Master;

[New Product Approval New]

Load*, APPLYMAP('Map_Region', [Country_List]) As Region
Resident
[New Product Approval];
DROP
[New Product Approval New];


Regards,

Jagan.

preminqlik
Specialist II
Specialist II

once check, you are dropping your newly created table.....and write ", " after *

like below :

[New Product Approval New]:

Load *,

APPLYMAP('Map_Region', [Country_List],null()) As Region
Resident
[New Product Approval];

drop table [New Product Approval];

Not applicable
Author

It works. Thank you so much for you help.

ngulliver
Partner - Specialist III
Partner - Specialist III

Hi, Jasmine.

If you want a bit of help with ApplyMap, have a look at Steve Dark's blog

http://www.quickintelligence.co.uk/applymap-is-it-so-wrong/

Steve also has a number of other blogs for beginners.

Cheers,

Neil