Skip to main content
Announcements
See why Qlik is a Leader in the 2024 Gartner® Magic Quadrant™ for Analytics & BI Platforms. Download 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