The following VBA function returns only uppercase letters. Is that normal behavior?
LO ver: 6.2.7.1, os: Windows 10 (x64) hu-HU
Function FirstUpper( sString As String ) As string
FirstUpper = UCase( Left( sString, 1 ) + LCase( Mid( sString, 2 ) )
End Function