RobBroekhuis
Technical User
I have an AddIn application which manipulates user input files, and creates output workbooks. On one of the output file's worksheets, I place a button from the controls menu bar, and in the worksheet's code, I have:
ExtractPlanValues is a public sub in my AddIn. Excel can't find the sub and generates an error when I click the button. Is there any way I can call an AddIn's public subs from outside of the AddIn's code?
Rob
Code:
Private Sub btnUpdate_Click()
ExtractPlanValues
End Sub
Rob