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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
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