Syntax:
[Let] var = expr
Group: Assignment
Description: Assign the value of expr to var. The keyword Let is optional.
Example:
Sub Main Let X = 1 X = X*2 Debug.Print X ' 2 End Sub