do not have to take into account the safety messages
Sub ArrowMakerLeftToRightDown()
'Select Range and run this macro
With Selection
ActiveSheet.Shapes.AddConnector(msoConnectorStraight, _
.Left, .Top, .Left + .Width, .Top + .Height).Select
End With
Selection.ShapeRange.Line.EndArrowheadStyle = msoArrowheadOpen
End Sub
Sub ArrowMakerRightToLeftDown()
'Select Range and run this macro
With Selection
ActiveSheet.Shapes.AddConnector(msoConnectorStraight, _
.Left + .Width, .Top, .Left, .Top + .Height).Select
End With
Selection.ShapeRange.Line.EndArrowheadStyle = msoArrowheadOpen
End Sub
Sub ArrowMakerLeftToRightUp()
'Select Range and run this macro
With Selection
ActiveSheet.Shapes.AddConnector(msoConnectorStraight, _
.Left, .Top + .Height, .Left + .Width, .Top).Select
End With
Selection.ShapeRange.Line.EndArrowheadStyle = msoArrowheadOpen
End Sub
Sub ArrowMakerRightToLeftUp()
'Select Range and run this macro
With Selection
ActiveSheet.Shapes.AddConnector(msoConnectorStraight, _
.Left + .Width, .Top + .Height, .Left, .Top).Select
End With
Selection.ShapeRange.Line.EndArrowheadStyle = msoArrowheadOpen
End Sub
Sub ArrowMakerLeftToRightTOP()
'Select Range and run this macro
With Selection
ActiveSheet.Shapes.AddConnector(msoConnectorStraight, _
.Left, .Top, .Left + .Width, .Top).Select
End With
Selection.ShapeRange.Line.EndArrowheadStyle = msoArrowheadOpen
End Sub
Sub ArrowMakerRightToLeftTOP()
'Select Range and run this macro
With Selection
ActiveSheet.Shapes.AddConnector(msoConnectorStraight, _
.Left + .Width, .Top, .Left, .Top).Select
End With
Selection.ShapeRange.Line.EndArrowheadStyle = msoArrowheadOpen
End Sub
Sub ArrowMakerLeftTopToDown()
'Select Range and run this macro
With Selection
ActiveSheet.Shapes.AddConnector(msoConnectorStraight, _
.Left, .Top, .Left, .Top + .Height).Select
End With
Selection.ShapeRange.Line.EndArrowheadStyle = msoArrowheadOpen
End Sub
Sub ArrowMakerLeftDownToTop()
'Select Range and run this macro
With Selection
ActiveSheet.Shapes.AddConnector(msoConnectorStraight, _
.Left, .Top + .Height, .Left, .Top).Select
End With
Selection.ShapeRange.Line.EndArrowheadStyle = msoArrowheadOpen
End Sub
Bookmarks