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.
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
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.