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: 
hopkinsc
Partner - Specialist III
Partner - Specialist III

Best way to change values in field

Hi,

I have some values in a field 'Sales Pool'. There have been keying in errors and i wanted a way to change the incorrect vales within Qlikview.

A request has been put in to have the values corrected in the database but this can sometimes take months to get done!

Here is an example of the field..

[Sales Pool]

DIR

LG

CON

OTH

lg

lG

the vales i want changed are the last 2, thses are both supposed to be LG. so at the moment i have to select the 3 values whereas it should just be LG

Can anyone help?

2 Replies
lironbaram
Partner - Master III
Partner - Master III

if the only thing you need is to change all data

to upper case , then you can do it in the load script of qlikview

by using : UPPER([Sales Pool]) AS Sales Pool

Not applicable

try using the following script:

[Text Substitutions]:
MAPPING LOAD * INLINE [
From, To
lg, LG
lG, LG

     ];

LOAD
...

,mapsubstring('Text Substitutions',YOURFIELD) as YOURFIELD
...
from YOURTABLE;