Capitalize the only first letter in Excel and Google Sheets
=UPPER(LEFT(A2,1))&RIGHT(A2,LEN(A2)-1)
=UPPER(LEFT(A2,1))&RIGHT(A2,LEN(A2)-1)
=UPPER(LEFT(A2,1))&RIGHT(A2,LEN(A2)-1)
UPPER(LEFT(A2,1)) = extract first letter and change it to upper case
RIGHT(A2,LEN(A2)-1) = extract all the text except the first letter
& = join the first and second part
=UPPER(LEFT(A2,1))&RIGHT(A2,LEN(A2)-1)
UPPER(LEFT(A2,1)) = extract first letter and change it to upper case
RIGHT(A2,LEN(A2)-1) = extract all the text except the first letter
& = join the first and second part