I have some strings like avg_face_count and I need to convert them in avgFaceCount in Excel
Basically I need to find every underscore in the string, remove it and replace the next underscore character in uppercase
I tried https://superuser.com/questions/996712/excel-findreplace-lowercase-after-a-certain-character
but it only work for one underscore
thanks
=SUBSTITUTE(PROPER(SUBSTITUTE(A20,"_"," "))," ","")It first replaces
_for a space character. Then creates Caps for the first character after the space and finally removes the spaces.If you truly only need the character after
_to be in caps, then use this Office 365 solution: