Chào các bạn!
Tui muốn đóng khung khối ô Range("A16") với khung viền dày và đậm
Tui có record code đóng khung nhưng thấy dài dòng và khó hiểu
Nhờ các bạn Rút gọn và dễ hiểu, dễ áp dụng
Xin cảm ơn các bạn!
Tui muốn đóng khung khối ô Range("A16") với khung viền dày và đậm
Tui có record code đóng khung nhưng thấy dài dòng và khó hiểu
Nhờ các bạn Rút gọn và dễ hiểu, dễ áp dụng
Mã:
Sub Macro3()
Range("A1:D6").Select
Selection.Borders(xlDiagonalDown).LineStyle = xlNone
Selection.Borders(xlDiagonalUp).LineStyle = xlNone
With Selection.Borders(xlEdgeLeft)
.LineStyle = xlContinuous
.ColorIndex = xlAutomatic
.TintAndShade = 0
.Weight = xlThick
End With
With Selection.Borders(xlEdgeTop)
.LineStyle = xlContinuous
.ColorIndex = xlAutomatic
.TintAndShade = 0
.Weight = xlThick
End With
With Selection.Borders(xlEdgeBottom)
.LineStyle = xlContinuous
.ColorIndex = xlAutomatic
.TintAndShade = 0
.Weight = xlThick
End With
With Selection.Borders(xlEdgeRight)
.LineStyle = xlContinuous
.ColorIndex = xlAutomatic
.TintAndShade = 0
.Weight = xlThick
End With
Selection.Borders(xlInsideVertical).LineStyle = xlNone
Selection.Borders(xlInsideHorizontal).LineStyle = xlNone
End Sub