excel vba to lower case

The solution for “excel vba to lower case” can be found here. The following code will assist you in solving the problem.

‘ 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

Thank you for using DeclareCode; We hope you were able to resolve the issue.

More questions on [categories-list]

Similar Posts