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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Capitalize

I'm using Capitalize(), it works fine for normal text but if there's a value like:

adam's

it converts it to:

Adam'S

I want:

Adam's

Any suggestions?

1 Solution

Accepted Solutions
Not applicable
Author

Hi

Try with this:

=Replace(Capitalize(Replace(field, chr(39), '_')), '_', chr(39))

Regards,

Ricardo

View solution in original post

2 Replies
Not applicable
Author

Hi

Try with this:

=Replace(Capitalize(Replace(field, chr(39), '_')), '_', chr(39))

Regards,

Ricardo

Anonymous
Not applicable
Author

Thank you.