Thanks Smurf but it sounds to me like Chinese
Here's a way without using VBA.
Assuming your first name is in cell A1, use the following code:
=UPPER(LEFT((A1),1))&LOWER(MID(A1,2,LEN(A1)-1))
If you want to add last name as well, you can quickly adjust the formula to do so.