Skip to main content
Announcements
Introducing a new Enhanced File Management feature in Qlik Cloud! GET THE DETAILS!
cancel
Showing results for 
Search instead for 
Did you mean: 
Korto2024
Contributor III
Contributor III

Applymap in qlikview

Hi ,

i have this script 

Product:

load 

id,

descreption

from source;

 

sales:

load 

idproduct,

amount

from source ;

 

I want this result

id_product,descreption,amount 

how can i do it by applymap

thanks

Labels (3)
1 Solution

Accepted Solutions
MatheusC
Specialist II
Specialist II

Hi, @Korto2024 

The id being the value corresponding to the two Product and Sales tables,

try like the example below:

Products:
mapping
load
Id,
description
from the source;

 

sales:
load
idproduct,
ApplyMap('Product',idproduct) as per description,
amount
from the source;

https://help.qlik.com/pt-BR/qlikview/May2023/Subsystems/Client/Content/QV_QlikView/Scripting/Mapping...

Regarts,
Matheus

Did you find a solution to your question? Mark the solution as accepted and if you found it useful, press the like button!

View solution in original post

1 Reply
MatheusC
Specialist II
Specialist II

Hi, @Korto2024 

The id being the value corresponding to the two Product and Sales tables,

try like the example below:

Products:
mapping
load
Id,
description
from the source;

 

sales:
load
idproduct,
ApplyMap('Product',idproduct) as per description,
amount
from the source;

https://help.qlik.com/pt-BR/qlikview/May2023/Subsystems/Client/Content/QV_QlikView/Scripting/Mapping...

Regarts,
Matheus

Did you find a solution to your question? Mark the solution as accepted and if you found it useful, press the like button!