With xlWS.Range("A1:A100")
.Interior.Color = RGB(194, 220, 255)
.Borders(xlEdgeRight).LineStyle = xlContinuous
.Borders(xlEdgeRight).Weight = xlThick
.Borders(xlEdgeRight).Color = RGB(255, 255, 255)
.Borders(xlEdgeLeft).LineStyle = xlContinuous
.Borders(xlEdgeLeft).Weight = xlThick
.Borders(xlEdgeLeft).Color = RGB(255, 255, 255)
.Borders(xlEdgeTop).LineStyle = xlContinuous
.Borders(xlEdgeTop).Weight = xlThick
.Borders(xlEdgeRight).Color = RGB(255, 255, 255)
.Borders(xlEdgeBottom).LineStyle = xlContinuous
.Borders(xlEdgeBottom).Weight = xlThick
.Borders(xlEdgeBottom).Color = RGB(255, 255, 255)
End With
Friday, June 15, 2018
Format cell borders in Excel using VBA
This example creates a header row with a heavy, black border and a light blue background.
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment