Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@ganesh092929
Last active December 25, 2017 09:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ganesh092929/7d8f5eeb84b5376430e8eca7bb963d8b to your computer and use it in GitHub Desktop.
Save ganesh092929/7d8f5eeb84b5376430e8eca7bb963d8b to your computer and use it in GitHub Desktop.
Introducing Variables
Sub Test()
'Dim variableName as variableType
Dim int1 as Integer
Dim str1 as String
int1 = 1
str1 = "Hello World"
Debug.print int1
Debug.print str1
End Sub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment