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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
gerhardl
Creator II
Creator II

Proper Case

Hi,

Is there something like the excel Proper function I can use in QV?

I have fields where our system shows all stores in UPPERCASE, I want to change them all to Proper Case. I've played around with the Force statement but this seems to be for Field Names, I just want to change the field values.

Like I would use the number function...

Regards,

Gerhard

1 Solution

Accepted Solutions
Not applicable

I think you are looking for the capitalize() funtion. Used just like lower() or upper().

View solution in original post

3 Replies
Not applicable

I think you are looking for the capitalize() funtion. Used just like lower() or upper().

kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi,

   Try Capitalize() to achieve this.

   Here is an example

  

   capitalize ( 'my little pony' )

   returns 'My Little Pony'

   capitalize ( 'AA bb cC Dd' )

    returns 'Aa Bb Cc Dd'

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
richardwilde
Contributor III
Contributor III

What would be better at times is a function that doesn't mess with the capitalization of inner letters, but just changes the first letter of each word to be capital - otherwise you get acronyms now in lower case after the first letter which isn't what I want.