Ajuda do Collabora Office 24.04
Atribui um valor a uma variável.
[Let] variable = expression
variable: Variable that you want to assign a value to. Value and variable type must be compatible.
Tal como na maioria dos dialetos do BASIC, a palavra-chave Let é opcional.
Sub ExampleLet
Dim sText As String
Let sText = "Las Vegas"
MsgBox Len(sText) ' devolve 9
End Sub