Skip to content

Instantly share code, notes, and snippets.

@bervukas
Last active March 1, 2016 10:20
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 bervukas/174c97595a457102970b to your computer and use it in GitHub Desktop.
Save bervukas/174c97595a457102970b to your computer and use it in GitHub Desktop.
Example: Using Function and Sub Parameters in VBA
Function CreateProposal(clientName As String,
clientId As Integer,
title As String,
subtitle As String,
projectName As String,
reportDate As Date,
preparedBy As String,
reviewedBy As String,
authoredBy As String,
fontSize As Integer) As Boolean
''
' Logic goes here...
End Function
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment