Print selected range without printing objects (buttons, etc)

mikeymay

Well-known Member
Joined
Jan 17, 2006
Messages
1,600
Office Version
  1. 365
Platform
  1. Windows
Is there a way of printing a worksheet and not including any objects within the range on the print out?


Thanks
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
Hi,

This should work as a VBA solution

Code:
Sub HideObjs()

Dim ws As Worksheet
Dim s As Shape

Set ws = ActiveSheet

For Each s In ws.Shapes

    s.Visible = msoFalse

Next s

ws.PrintOut

For Each s In ws.Shapes

    s.Visible = msoTrue

Next s

End Sub

Not sure if there's a page option to do this manually.

Hope it helps
 
Upvote 0
Marginally faster method:
Code:
Sub HideObjs()
Dim s as Shape
with ActiveSheet
  .Shapes.SelectAll
  Selection.Visible = False
  .PrintOut
End with
For Each s In ActiveSheet.Shapes
    s.Visible = True
Next s
End Sub
I'm curious if anyone knows how to avoid looping to make the shapes revisible
 
Upvote 0

Forum statistics

Threads
1,214,919
Messages
6,122,259
Members
449,075
Latest member
staticfluids

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top