Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Maximize ROI with Qlik Professional Services – Expert Guidance, Faster Results: Explore Qlik Services
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Mapping Load Not Working?

Can a mapping load not handle / value?  I tried a few combinations by removing the spaces but can not get this mapping load to work...

Anyone else have any ideas?  This is my product_line field.  This should match up?

Would like the product_line to match up to 'ACP'.

productline.JPG

Applymap('ProductLine', product_line) AS ProductType;

ProductLineMap:

MAPPING Load * Inline [

product_line, ProductType

ACP/65/3RD PRTY, ACP

ACP/70/SUPPORT, ACP

ACP/GSS C/3RD PRTY, ACP

...

];

1 Solution

Accepted Solutions
Miguel_Angel_Baeyens

Hi,

This may be obvious but is the MAPPING LOAD table BEFORE the ApplyMap() function? If not, then you will get no errors, but the field will be empty.

Hope that helps.

Miguel Angel Baeyens

BI Consultant

Comex Grupo Ibérica

View solution in original post

2 Replies
Miguel_Angel_Baeyens

Hi,

This may be obvious but is the MAPPING LOAD table BEFORE the ApplyMap() function? If not, then you will get no errors, but the field will be empty.

Hope that helps.

Miguel Angel Baeyens

BI Consultant

Comex Grupo Ibérica

Not applicable
Author

Hi jjbingen

You are missing your table name:

                ProductLine

Applymap('ProductLineMap', product_line) AS ProductType;   CORRECT!

And i´m agree with Miguel about the MAPPING LOAD table BEFORE the ApplyMap() function

Check it out!

Regards.