1.7K Posts

July 12th, 2007 10:00

Try the following code snippet:.(If smilies appear, they should be replaced with a closing Parentheses. This post thinks I am trying to insert them)
 
Sub SelectShape()
    Dim myShape As Shape
    

    ActiveSheet.Shapes("Picture 2").Select 'Object to select
    Selection.Name = "Bldg One" 'Rename object
    Set myShape = ActiveSheet.Shapes("Bldg One")
    myShape.Select
   
End Sub


Message Edited by abach on 07-12-2007 07:28 AM

73 Posts

July 12th, 2007 11:00

Thanks Allan, that works perfectly and exactly what I was looking for.
Much Obliged
Crosbylake
No Events found!

Top