This code removes all the borders from the selected range.
VBA Code:
Sub RemoveAllBorders()
Selection.Borders.LineStyle = xlNone
End Sub
This code removes all the borders from the selected range.
VBA Code:
Sub RemoveAllBorders()
Selection.Borders.LineStyle = xlNone
End Sub