Collabora Office 24.04 Help
Gán một giá trị cho một biến.
[Let] variable = expression
variable: Variable that you want to assign a value to. Value and variable type must be compatible.
Cũng với phần lớn phương ngôn BASIC, từ khoá Let vẫn còn tùy chọn.
Sub ExampleLet
Dim sText As String
Let sText = "Las Vegas"
MsgBox Len(sText) REM trả về 9
End Sub