עזרה עבור LibreOfficeDev 7.4
Returns the number of characters in a string, or the number of bytes that are required to store a variable.
Len (Text As String)
Long
\
Sub ExampleLen
Dim sText as String
sText = "Las Vegas"
MsgBox Len(sText) ' 9
End Sub