View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Ron de Bruin Ron de Bruin is offline
external usenet poster
 
Posts: 11,123
Default Excel Print All Tabs Macro

Or use a one liner
http://www.rondebruin.nl/print.htm#Print


--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"JW" wrote in message oups.com...
Su
Sub code()
Dim sht As Worksheet
For Each sht In ActiveWorkbook.Worksheets
sht.PrintOut
Next sht
End Sub

HTH

prahz wrote:
Can anyone help me with this newbie question:

I need a macro that prints all tabs in a given workbook. Can anyone
provide me the code please?

Thanks,

Paul