Answers for "excel vba upper case first letter"

VBA
2

vba uppercase first letter of each word

MsgBox StrConv("it is nice", vbProperCase)
Posted by: Guest on January-21-2021
0

excel vba to upper 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
MsgBox UCase(sText)                   ' RUN, FORREST RUN
Posted by: Guest on January-18-2021

Code answers related to "excel vba upper case first letter"

Code answers related to "VBA"

Browse Popular Code Answers by Language