Collabora Office 24.04 Help
Prevedie malé písmená na veľké.
Pozri tiež: Funkcia LCase
UCase (Text As String)
String
Text: Akýkoľvek reťazec, ktorý chcete previesť.
Sub ExampleLUCase
Dim sVar As String
sVar = "Las Vegas"
Print LCase(sVar) ' "las vegas"
Print UCase(sVar) ' "LAS VEGAS"
End Sub