R
rob nobel
I would like to know how to call a procedure from another worksheet in the
same workbook. I can call a procedure from procedures in the same
worksheet, but not if the procedure I'm calling is in another worksheet.
What I have is the following in one worksheet...
Private Sub LastEntry_Click()
(instructions)
End Sub
And this in another worksheet....
Private Sub ClosePricing_Click()
(instructions)
Call LastEntry_Click
End Sub
Even If I change Private to Public or omit the words Private, it still does
not work and the helps does not make it clear what I'm doing wrong.
Rob
same workbook. I can call a procedure from procedures in the same
worksheet, but not if the procedure I'm calling is in another worksheet.
What I have is the following in one worksheet...
Private Sub LastEntry_Click()
(instructions)
End Sub
And this in another worksheet....
Private Sub ClosePricing_Click()
(instructions)
Call LastEntry_Click
End Sub
Even If I change Private to Public or omit the words Private, it still does
not work and the helps does not make it clear what I'm doing wrong.
Rob