View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Frank Kabel Frank Kabel is offline
external usenet poster
 
Posts: 3,885
Default Calling Procedures

Hi use the declaration
Private sub foo()
' your code
end sub

--
Regards
Frank Kabel
Frankfurt, Germany

jrh wrote:
I have a title for a procedure which is the title I want
someone to see when they go to Tools-Macro and pick a
macro to run. This procedure calls a couple of procedures
written below it in the module. I don't want these
procedure names to be choices when someone goes to Tools-
Macro. Do I have to name these other procedures

something different so they are called by that one
procedure but are not choices to run on their own?

thank you.