How can i delete a columns worth of hyperlinks and graphics.THe problem is that each shape has its own shape name ("picture x").
I wrote a simple macro
Sub A_Hyper()
'
' A_Hyper Macro
'
ActiveSheet.Shapes("Picture 4").Select
Selection.ShapeRange.Item(1).Hyperlink.Delete
Selection.Delete
ActiveSheet.Shapes("Picture 5").Select
Selection.ShapeRange.Item(1).Hyperlink.Delete
Selection.Delete
End Sub
I wrote a simple macro
Sub A_Hyper()
'
' A_Hyper Macro
'
ActiveSheet.Shapes("Picture 4").Select
Selection.ShapeRange.Item(1).Hyperlink.Delete
Selection.Delete
ActiveSheet.Shapes("Picture 5").Select
Selection.ShapeRange.Item(1).Hyperlink.Delete
Selection.Delete
End Sub