Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
bouderbc
Creator
Creator

How to replace text values(fields) in a column by other text values?

Hi Experts,

How to replace text values in a column by other text values? and i want to do it in the load script

Example:

sampledata.png

1. How to replace in the column DATA1 the fields Dessine by Dessiné ?

2. How to replace in the column DATA 2 the fields .5 by  windows7 ?

Supposed that i load the Data like this:

LOAD [DATA 1],

     [DATA 2]

FROM

C:\Users\mydata\Desktop\sample_data.xlsx

(ooxml, embedded labels, table is Feuil1);

what should i do to transform my data ?

Thanx

Regards

Ali

6 Replies
kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi,

Try using the Applymap function.

http://help.qlik.com/en-US/qlikview/12.1/Subsystems/Client/Content/Scripting/MappingFunctions/ApplyM...

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
bouderbc
Creator
Creator
Author

Thanx i will tell u if it works

sunny_talwar

Also, look here:

Data Cleansing

its_anandrjs

Either you can introduce any new table with Joins, Concatenation or Mapping with the help of one of this you can get change the text values in the existing values.

Neymar_Jr
Creator II
Creator II

Hi,

may be you can create inline table.

Ex:

[Inline 1]:

Load * Inline

[

DATA 1,Data 1

Dessine,Dessiné

];

[INLINE TABLE2]:

Load * Inline

[

  DATA 2,Data 2

  .5,windows7

];

And use Data 1 instead of DATA 1  and Data 2 instead of DATA 2.

afsarshaikh
Creator
Creator

Try,

Replace your column field with the below condition and give the column alias:

If([Data 1] = 'Dessine', 'Dessiné', [Data 1]) as Column_Alias

If([Data 2] = .5, 'Windows7', [Data 2]) as Column_Alias

Regards,
Afsar Shaikh
Project Manager- QlikView Dev. & Support
Afsar Shaikh
Email- afsar.shaikh@live.com