Pomoc LibreOffice 25.2
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