Collabora Office 24.04 Help
๊ฐ์ ๋ณ์์ ํ ๋นํฉ๋๋ค.
[Let] variable = expression
variable: Variable that you want to assign a value to. Value and variable type must be compatible.
๋๋ถ๋ถ์ BASIC ์ธ์ด์์์ ๋ง์ฐฌ๊ฐ์ง๋ก ํค์๋ Let์ ์ ํ ์ฌํญ์ ๋๋ค.
Sub ExampleLet
Dim sText As String
Let sText = "Las Vegas"
MsgBox Len(sText) REM Returns 9
End Sub