Convert first 3 letters to Upper Case

Hi,
How do you convert only the first 3 letters to the upper case? , e.g. hello to HEL
I’m extracting the info from a csv file btw.

Hi @eunicecws,

Pls try this solution.Example.xaml (4.9 KB)

Regards,
Paluri

2 Likes

hi @eunicecws

var.substring(0,3).Toupper

image

Regards,
Gulshiyaa

3 Likes