Camel case converter in an excel
Try this:
=LOWER(LEFT(A1)) & MID(SUBSTITUTE(PROPER(A1),"_",""),2,LEN(A1))
Just use =PROPER(A1) on the another cell and you have it done.
Try this:
=LOWER(LEFT(A1)) & MID(SUBSTITUTE(PROPER(A1),"_",""),2,LEN(A1))
Just use =PROPER(A1) on the another cell and you have it done.