View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Dave Peterson Dave Peterson is offline
external usenet poster
 
Posts: 35,218
Default Running one macro from another

Maybe...

Option Explicit
Sub RunBoth()
call FirstMacro
Call SecondMacro
end sub



Megadrone wrote:

I have a macro that takes info from a Master spreadsheet & generates a
separate spreadsheet. I have another macro that takes that generated
spreadsheet & generates another spreadsheet. My question is: How can I run
these as two macros as one single Macro?


--

Dave Peterson