Table - Fields Proper Cases

gsrajan

Registered User.
Local time
Today, 17:42
Joined
Apr 22, 2014
Messages
227
Hi,

I have a table imported from excel, in which both First and Last names are in upper cases. Is there a way to change the First names into proper case?.

Thank you.
 
StrConv is a function in VBA, which has an argument vbProperCase.
Code:
? StrConv("PAUL eUgIn FrAnCiS", vbProperCase)
Paul Eugin Francis
 
Thank you.
 

Users who are viewing this thread

Back
Top Bottom