A armesca Registered User. Local time Today, 17:01 Joined Apr 1, 2011 Messages 45 Apr 5, 2011 #1 I know there is a way to do this, but cannot find it on the web. I want to take eight different functions, all contained in one vba module, and run all of them with the click of a button I created on a form. How do I do this? Thanks!
I know there is a way to do this, but cannot find it on the web. I want to take eight different functions, all contained in one vba module, and run all of them with the click of a button I created on a form. How do I do this? Thanks!
boblarson Smeghead Local time Today, 14:01 Joined Jan 12, 2001 Messages 32,040 Apr 5, 2011 #2 In the click event of the button you would call them Code: Private Sub ButtonNameHere_Click() Function1 Function2 Function3 ...etc. End Sub
In the click event of the button you would call them Code: Private Sub ButtonNameHere_Click() Function1 Function2 Function3 ...etc. End Sub