VBA
HI
I now have several codes in several different code windows ...
each time i want to up date the file i have to select the code windows of all and run .... is there an eaiser way of doing this with out selecting each code window and running it
Try in one macro do the
Try in one macro do the following
Sub RunAll()
Call Macro1
Call Macro2
Call Macro3
'Add any subroutine
End Sub
thanks ... do i put this in
thanks ... do i put this in a
macro of its own ?