Is there a way of specifying "With" for a number of objects.
In other words, could this be coded more efficiently?
With Selection.Borders(xlEdgeBottom)
With Selection.Borders(xlEdgeLeft)
With Selection.Borders(xlEdgeRight)
.LineStyle = xlContinuous
.ColorIndex = 33
.TintAndShade = 0
.Weight = xlThick
End With
End With
End With
In other words, could this be coded more efficiently?
With Selection.Borders(xlEdgeBottom)
With Selection.Borders(xlEdgeLeft)
With Selection.Borders(xlEdgeRight)
.LineStyle = xlContinuous
.ColorIndex = 33
.TintAndShade = 0
.Weight = xlThick
End With
End With
End With