LibreOfficeDev 25.8 Help
dkB32‖Converts all uppercase letters in a string to lowercase.
sQC4R‖See also: UCase Function
chngB‖LCase (Text As String)
String
FqYxU‖ Text: Any string expression that you want to convert.
Sub ExampleLUCase
Dim sVar As String
    sVar = "Las Vegas"
    Print LCase(sVar) ' "las vegas"
    Print UCase(sVar) ' "LAS VEGAS"
End Sub