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

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Show value in pivot table

Dear all,

I have a value like this

DelinquentStatus = '0'.,'1','2','3','4','5','6','7','8','9','10','11','12'

By the way, I'd like show DelinquentStatus in my pivot table like this: 'MOB0','MOB1','MOB2','MOB3',...,'MOB12'

How can I change these value?

Thank you very much for your help.

1 Solution

Accepted Solutions
Miguel_Angel_Baeyens

Hi,

You can easily create a mapping table or a Dual() field in your LOAD, something like

Map:

MAPPING LOAD * INLINE [

Num, String

0, MOB0

1, MOB1

2, MOB2

... // and so on

];

Data:

LOAD DelinquentStatus,

     Field2,

     ApplyMap('Map', DelinquentStatus) AS DelinquentStatus_String,

... // Rest of your script here

Hope that helps

Miguel

View solution in original post

1 Reply
Miguel_Angel_Baeyens

Hi,

You can easily create a mapping table or a Dual() field in your LOAD, something like

Map:

MAPPING LOAD * INLINE [

Num, String

0, MOB0

1, MOB1

2, MOB2

... // and so on

];

Data:

LOAD DelinquentStatus,

     Field2,

     ApplyMap('Map', DelinquentStatus) AS DelinquentStatus_String,

... // Rest of your script here

Hope that helps

Miguel