Sub Add_Shape()
Dim Left As Long
Dim Top As Long
Dim Width As Long
Dim Height As Long
Left = ActiveCell.Left
Top = ActiveCell.Top
Width = Selection.Width
Height = ActiveCell.Height
ActiveSheet.Shapes.AddShape(msoShapeRectangle, Left, Top, Width, Height).Select
'ActiveSheet.Shapes.AddShape(msoShapeIsoscelesTriangle, Left, Top, Width, Height).Select
With Selection.ShapeRange.Line
.Visible = msoTrue
.ForeColor.RGB = RGB(255, 0, 0) 'Set Box color to red. Modify if you want
.Transparency = 0
.Weight = 4.5 'Set thickness of Box change thickness if you want
End With
'Selection.ShapeRange.Fill.Visible = msoFalse
Selection.ShapeRange.Fill.ForeColor.RGB = RGB(0, 0, 255)
End Sub