set an array of shapes visibility

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
 
H

Héctor Miguel

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