Paul Sansom

Board Regular
Joined
Jan 28, 2013
Messages
178
Office Version
  1. 2021
  2. 2016
Platform
  1. Windows
Hi
Is there a simpler & neater way to write this in a For Each loop
Code:
    With Sheet3.Shapes
    .Range("Picture 7").Visible = msoFalse
    .Range("Picture 9").Visible = msoFalse
    .Range("Picture 4").Visible = msoFalse
    .Range("Picture 5").Visible = msoFalse
    .Range("Picture 6").Visible = msoFalse
    .Range("Picture 10").Visible = msoFalse
    End With

Cheers Paul
 

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN
Sometimes I cant see what is blindingly obvious. Many thanks
 
Upvote 0
Hi Paul - just be aware that the solution fromCalcSux will hide all shapes on the sheet, not just the ones you listed.
 
Upvote 0
Thnx.. This is all the shapes on that Sheet. I deleted some and couldn't be bothered to go back and rename other to be contiguous :)
 
Upvote 0
If they are all pictures, you should be able to use just:

Code:
sheet3.pictures.visible = false
 
Upvote 0

Forum statistics

Threads
1,214,407
Messages
6,119,332
Members
448,888
Latest member
Arle8907

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