Answers for "draw borders vba"

VBA
0

vba cell all borders

' set "All Boarders" around a range
ActiveSheet.Range("A1:C3").Borders.LineStyle = xlContinuous
Posted by: Guest on October-03-2020
0

excel vba table border

Sub SetRangeBorder() 
 
 With Worksheets("Sheet1").Range("B2").Borders(xlEdgeBottom) 
 .LineStyle = xlContinuous 
 .Weight = xlThin 
 .ColorIndex = 3 
 End With 
 
End Sub
Posted by: Guest on May-06-2020

Code answers related to "VBA"

Browse Popular Code Answers by Language