cancel
Showing results for 
Search instead for 
Did you mean: 

Sentence Case

Former Member
0 Kudos

Experts,

I am using CR2008 and need to Convert text from:

I AM IN CAPITAL CASE

to

I am in capital case

ProperCase() will not work since it gives:

I Am In Capital Case

Thanks

Sunil

Accepted Solutions (1)

Accepted Solutions (1)

abhilash_kumar
Active Contributor
0 Kudos

Hi Sunil,

Try:

{String field}[1] & LowerCase(Mid({String field},2))

-Abhilash

Former Member
0 Kudos

Thanks, Abhilash.

Exactly what I was looking for. God bless you, my friend .

Sunil

Answers (2)

Answers (2)

Former Member
0 Kudos

Or If you need I capital and remaining small then use this.

uppercase(left('I AM IN CAPITAL CASE',1))&lowercase('I AM IN CAPITAL CASE'[(InStr ('I AM IN CAPITAL CASE', " ") + 1) To Length ('I AM IN CAPITAL CASE')])

former_member198639
Participant
0 Kudos

LowerCase(str)