"Proper" string function

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a function in VBA that is equal to the Proper function in excel? I know there is a Ucase and a Lcase...
 
George,

Use the StrConv function. E.g.,

Result = StrConv(Text, vbProperCase)


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com (e-mail address removed)


George said:
Is there a function in VBA that is equal to the Proper function in excel?
I know there is a Ucase and a Lcase...
 
Back
Top