Excel Vba To Lower Case

[Solved] Excel Vba To Lower Case | Vb - Code Explorer | yomemimo.com
Question : excel vba to lower case

Answered by : vastemonde

' To lower, upper and proper case
Dim sText As String
sText = "Run, forrest run"
MsgBox StrConv(sText, vbProperCase) ' Run, Forrest Run
MsgBox StrConv(sText, vbLowerCase) ' run, forrest run
MsgBox StrConv(sText, vbUpperCase) ' RUN, FORREST RUN

Source : | Last Update : Mon, 25 Jan 21

Answers related to excel vba to lower case

Code Explorer Popular Question For Vb