Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
zied_ahmed1
Specialist
Specialist

First letter upper

Hello,

I would like to capitalize the first letter of a field but to keep other words fixe

example :

alcDefG => AlcDefG

I tried Capitalize but there is not the requirement

Thanks

1 Solution

Accepted Solutions
arvind1494
Specialist
Specialist

Use this:

Upper(left(Fieldname,1))&Mid(Fieldname,2,len(Fieldname)-1)

View solution in original post

7 Replies
dsharmaqv
Creator III
Creator III

arvind1494
Specialist
Specialist

Use this:

Upper(left(Fieldname,1))&Mid(Fieldname,2,len(Fieldname)-1)

zied_ahmed1
Specialist
Specialist
Author

I don't need to Capitalise every word : for Exemple if i have dEEpak sharma I need to have

DEEpak sharma...

zied_ahmed1
Specialist
Specialist
Author

I tried this before posting my question but it doesn't work

zied_ahmed1
Specialist
Specialist
Author

it works thank you

rubenmarin

Hi zied, Can you post a sample? that should work

It's directly saying: set first letter as uppercase and add other characters as they are. (3rd parameter for Mid is not really needed as you want all characters from the 2nd)

Edit: Ok

arvind1494
Specialist
Specialist

Welcome