Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
segerchr
Contributor III
Contributor III

Load skript Value instead of load value

Hey,

i am searching for a function which can do the following for me:

load

ACB.Name,

ACB.Number --> (if Number 1 is loaded, please write One in the database, if Number 2 is loaded please write Two.

from Sheet

Maybe somebody could help. Thanks in advance. CS

1 Solution

Accepted Solutions
juraj_misina
Luminary Alumni
Luminary Alumni

Hi,

the only way I can think of is using a reference table which you would join or map to your source table:

Map_NumString:

Mapping LOAD * Inline [

   Num, String

   1, One

   2, Two

   3, Three

];

Table1:

LOAD

   ACB.Name,

   ApplyMap('Map_NumString', ACB.Number)     as NumberString

from Source;

Hope this helps.

Juraj

View solution in original post

1 Reply
juraj_misina
Luminary Alumni
Luminary Alumni

Hi,

the only way I can think of is using a reference table which you would join or map to your source table:

Map_NumString:

Mapping LOAD * Inline [

   Num, String

   1, One

   2, Two

   3, Three

];

Table1:

LOAD

   ACB.Name,

   ApplyMap('Map_NumString', ACB.Number)     as NumberString

from Source;

Hope this helps.

Juraj