Macro Running Another Macro
I'm with Susan on this, code is unreadable without Call.
And it gets a lot worse when passing variables to code:
DoSomethingUseful X, MyString, MyCell, strWarningText
vs
Call DoSomethingUseful (X, MyString, MyCell, strWarningText)
Best wishes Harald
"Ronald R. Dodge, Jr." skrev i melding
...
Actually, you don't even have to use the "Call" keyword as it's assumed in
VBA.
|