Skip to content
This repository was archived by the owner on Oct 23, 2018. It is now read-only.

Created VBA folder and code #4398

Merged
merged 2 commits into from
Oct 17, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions VBA/HelloWorldVBA
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
//This function will print hello world to the immediate window
//Code must be ran in a VBA supported application (Excel, Access, Word, Outlook, PowerPoint)

Public Function HelloWorld()
Debug.Print "Hello World!"
End Function