Pomoc Collabora Office 24.04
Przekształca wszystkie małe litery ciągu na wielkie litery.
Zobacz także: Funkcja Lcase
UCase (tekst As String)
String
Tekst: Dowolny ciąg, który ma zostać przekształcony.
Sub ExampleLUCase
Dim sVar As String
sVar = "Las Vegas"
Print LCase(sVar) ' "las vegas"
Print UCase(sVar) ' "LAS VEGAS"
End Sub