set an array of shapes visibility

  • Thread starter Thread starter MM User
  • Start date Start date
M

MM User

Hi,

Is it possible to use an array to set the visibility:

ActiveSheet.Shapes(Array("image1", "image2", "shape3", "shape5")).Visible =
True

Thanks
 
hi, !
Is it possible to use an array to set the visibility:
ActiveSheet.Shapes(Array("image1", "image2", "shape3", "shape5")).Visible = True

try with:

ActiveSheet.Shapes.Range(Array("image1", "image2", "shape3", "shape5")).Visible = True

hth,
hector.
 
Thanks Hector!



Héctor Miguel said:
hi, !


try with:

ActiveSheet.Shapes.Range(Array("image1", "image2", "shape3",
"shape5")).Visible = True

hth,
hector.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top