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

Announcements
Independent validation for trusted, AI-ready data integration. See why IDC named Qlik a Leader: Read the Excerpt!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Capitalize all values of a column

Hi all,

I have a requirement to load the data of particular column values in capital letters.Can you please help me on this.

I tried using capitalize function.but it doesn't work for my case.

Name
apple
orange
banana

Out Put :

Name
APPLE
ORANGE
BANANA

Thanks,

Chiru

5 Replies
Not applicable
Author

Below syntax has worked for me 🙂

LOAD upper(Name) as Fruitname from table.

Thanks,

Chiru

jolivares
Specialist
Specialist

Or simply at the moment of presentation put "Upper(Name)"

Not applicable
Author

Thanks, this help for me

jolivares
Specialist
Specialist

Mark as correct for others users...

Colin-Albert
Partner - Champion
Partner - Champion

There is a function Capitalize() in QlikView this just converts the first letter to Uppercase and all others are lowercase.

To change the whole text to capital letters use upper()

upper(Name)