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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
qlikviewforum
Creator II
Creator II

Help required in ApplyMap

How can I create the applymap statement something like below in qlikview? I have issue with highlighted one below. I have column called Column1 and Column2 and EUR is hardcoded value. Please help on this.

applymap('AccountMap',Round(Column1/365,1)~Round(Column2/365,1)~'IND',1)

1 Reply
Qrishna
Master
Master

Hi,

In the above script make  Round(Column1/365,1)~Round(Column2/365,1)~'IND' as XYZ either in the mapping load statement or the table where you apply the map.

make sure the field names are same.

Eg:

AccountMap:

Mapping Load

Round(Column1/365,1)~Round(Column2/365,1)~'IND' as XYZ,

MAPPING KEY

FROM TABLE_ABC;



FACT:

LOAD A,B,

applymap('AccountMap',MAPPING KEY,1) AS  XYZ

FROM FACT.QVD;



Hope that helps.

Krishna