View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Don Guillett
 
Posts: n/a
Default Macro within a macro and Macro Prompts

for prompts have a look at INPUTBOX. As to multimacros
sub mymastermacro()
do something
call macro1
call macro2
etc
end sub

--
Don Guillett
SalesAid Software

"comparini3000" wrote in message
...
Is there any way to create a macro that prompts users for certain
information
or requests users to do a specifice task? I'm asking because I need to
create
a macro that compiles data from multiple files then sorts/organizes said
data. The problem is that neither the file naming nor the layout of the
data
within the spreadsheet is standardized (i.e. Net Income may be found in
cell
J52 on "Q01-05 Net Income.xls" and N87 on "Q2-2005 NI.xls").

Also, is it possible to run a macro within a macro? I guess that would
just
be extra steps within one big macro, but if possible I'd like to break
steps
down into individual macros and then just have one master macro.

Thanks in advance

comparini3000