Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Changing field values in the LOAD script

I have a field called 'Pi' which has values 'Yes' or 'No'.  Is there a way to LOAD the data into Qlikview but change all 'Yes' value to 'YES' and all 'No' value to 'NO' from the LOAD script?

Thanks

Greg

1 Solution

Accepted Solutions
m_woolf
Master II
Master II

3 Replies
m_woolf
Master II
Master II

upper(Pi) as Pi;

sunny_talwar

Just use Upper() function

LOAD Upper(Pi) as Pi,

           ....

Anonymous
Not applicable
Author

Thanks