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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
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

Labels (1)
1 Solution

Accepted Solutions
m_woolf
Master II
Master II

3 Replies
m_woolf
Master II
Master II

upper(Pi) as Pi;

sunny_talwar
MVP
MVP

Just use Upper() function

LOAD Upper(Pi) as Pi,

           ....

Anonymous
Not applicable
Author

Thanks