Skip to content

Instantly share code, notes, and snippets.

@SeongilRyu
Last active January 5, 2019 06:57
Show Gist options
  • Save SeongilRyu/6c541219ca325bef40cb9401c37b0edb to your computer and use it in GitHub Desktop.
Save SeongilRyu/6c541219ca325bef40cb9401c37b0edb to your computer and use it in GitHub Desktop.
VBA Procedure
Public Sub prc_add()
''프로시져 예제
Dim 가로 As Integer
Dim 세로 As Integer
Dim 면적 As Integer
가로 = 3
세로 = 4
면적 = 가로 * 세로
MsgBox 면적
''
'' 결과: 12
End Sub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment