Hello. I have this problem in crystal reports. Is there an easy way to do the following?

Sample problem: "FIRST NAME"

I would like the string/text "FIRST NAME" to appear in crystal report like this "First Name".

My incomplete solution in the crystal Formula Editor. I did it like this: (see below)

Code:
uppercase(left({Contacts.FirstName},1)) + lowercase(right({Contacts.FirstName},(len({Contacts.FirstName})-1)))
I manage to have "FIRST NAME" appear like this "First name". Is the an easy way to have it appear like "First Name"?

Any suggestion will be highly appreciated.