View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Ted Ted is offline
external usenet poster
 
Posts: 48
Default Print Multiple worksheets

Worked Great! Thanks!

"Jacob Skaria" wrote:

Try the below

Sub Macro()
Dim intTemp As Integer
For intTemp = Sheets("Start").Index To Sheets("End").Index
Sheets(intTemp).PrintOut Copies:=1, Collate:=True
Next intTemp
End Sub

If this post helps click Yes
---------------
Jacob Skaria


"Ted" wrote:

I need to print all worksheets between sheets named "Start" and "End". Does
anyone have a macro to do this?