Good afternoon. My colleague has created an Excel sheet with 'Up or Down' indicators and wants to be able to select an array of these objects. I believe they are named (locally?) Box 1 to Box 140. Is it possible to build up an array of these object names and then select that array. We have scoured the web and also tried to build-up the names - to no avail. Manually selecting 2 objects while recording a macro gives:-
But if we try to build something called "Boxes" we get the string "Box 1, Box 2", which then is of no use!!
I believe that these aren't the only objects on the sheet either.
Any ideas please?
Many thanks,
D€$
Code:
ActiveSheet.shapes.Range(Array("Box 1", "Box 2")).Select
But if we try to build something called "Boxes" we get the string "Box 1, Box 2", which then is of no use!!
I believe that these aren't the only objects on the sheet either.
Any ideas please?
Many thanks,
D€$