excel vba string uppercase code example
Example 1: excel vba check if string entirely uppercase
Function IsUpper(s) As Boolean
IsUpper = Len(s) And Not s Like "*[!A-Z]*"
End Function
Function IsUpper(s) As Boolean
IsUpper = UCase(s) = s
End Function
Function IsUpper(s) As Boolean
With CreateObject("VBScript.RegExp")
.Pattern = "^[^a-z]*$"
IsUpper = .test(s)
End With
End Function
Example 2: excel vba to upper case
Dim sText As String
sText = "Run, forrest run"
MsgBox StrConv(sText, vbProperCase)
MsgBox StrConv(sText, vbLowerCase)
MsgBox StrConv(sText, vbUpperCase)
MsgBox UCase(sText)