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