Hi Guys,
I would like to know how I can write a macro to print all sheets in a workbook, except the one called "HOME".
Any assistance greatly appreciated.
Thanks
Dave
Hi Guys,
I would like to know how I can write a macro to print all sheets in a workbook, except the one called "HOME".
Any assistance greatly appreciated.
Thanks
Dave
Hello Dave,
Here is macro to print all the sheets except "HOME".
Sincerely,![]()
Sub PrintSheets() Dim Wks As Worksheet For Each Wks In Worksheets If LCase(Wks.Name) <> "home" Then Wks.PrintOut End If Next Wks End Sub
Leith Ross
Works a treat. Thanks LeithOriginally Posted by Leith Ross
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks