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: 
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

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)