View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
Don Guillett[_4_] Don Guillett[_4_] is offline
external usenet poster
 
Posts: 2,337
Default Run only part of a macro for testing

sub mac1
end sub
sub mac2
end sub
sub runall
mac1
mac2
end sub
--
Don Guillett
SalesAid Software

"Josh O." wrote in message
...
Is it possible to run only a portion of a macro?

I am writing a long involved macro and I need to test each section to make
sure it is producing the desired result before I write the next section of
the macro. I was hoping I could run Section 1, write section 2, run

section
2 only, write section 3, run section 3 only...

How can I do that?