Collabora Office 24.04 Help
PriradĂ premennej urÄitĂș hodnotu.
[Let] variable = expression
variable: Variable that you want to assign a value to. Value and variable type must be compatible.
Rovnako ako vo vĂ€ÄĆĄine variantov BASICu je kÄŸĂșÄovĂ© slovo Let nepovinnĂ©.
Sub ExampleLet
Dim sText As String
Let sText = "Las Vegas"
MsgBox Len(sText) REM Returns 9
End Sub