Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
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.