Hello, I'm trying to figure out how to adjust my code so that when I:
Any idea how to do this?
- Select whatever cell I want (D6 in the example below)
- Click on the 'arrow image which runs the macro'
- The arrow gets formatted and put in the selected cell in the first bullet (D6 in the example below)
Any idea how to do this?
VBA Code:
Sub Arrow()
' Arrow Macro
ActiveSheet.Shapes.Range(Array("Straight Arrow Connector 7")).Select
Selection.Copy
ActiveSheet.Paste
With Selection.ShapeRange.Line
.ForeColor.RGB = RGB(192, 0, 0)
.Weight = 2.5
End With
With Selection.ShapeRange.Glow
.Color.ObjectThemeColor = msoThemeColorBackground1
.Radius = 3
End With
End Sub