colosgps1975
New Member
- Joined
- May 30, 2002
- Messages
- 49
Should be an easy one...
If I have a 'Private Sub', can I call it from another sub?
example
Private Sub DoThis()
Range("A1").value=3
End Sub
Sub Macro1()
Range("A2").value=1
DoThis
End Sub
How can I make the private sub work from the other sub?
Thanks for the help.
If I have a 'Private Sub', can I call it from another sub?
example
Private Sub DoThis()
Range("A1").value=3
End Sub
Sub Macro1()
Range("A2").value=1
DoThis
End Sub
How can I make the private sub work from the other sub?
Thanks for the help.