View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 27,285
Default Running VBA Code not written within the currrent worksheet

If you want to call it within the same project (same workbook), then put it
in a general module (in the VBE=Insert=Module).

Then it will be visible throughout the project if you do not declare it as
private.

--
Regards,
Tom Ogilvy

"DMB" wrote in message
...
How do I Call procedures from any worksheet. I don't want to have to cut

and
paste the code every time.