VBA Codes

D

Dan

What code is needed at the end of an exsisting Macro that
tells it to run another macro? thnx
 
F

Fred

And to make the code more easy to read I always put "Call" in front of the
procedure, but that's personal:

Call MyProcedure

instead of

MyProcedure
 
Top