我想在總線的底部添加邊框線和底部的邊框線Excel VBA - 僅在頂部和底部添加邊框的總線
例如,我有第2到第3行和第3-4列的數據,然後我在第5行添加了一條總和線2-3。總和線
我想在第5行的頂部和底部添加一條邊界線,只能到第4列。
我可以使用變量LastRow + 2(注意在最後一行數據和總行之間有一個空行)和LastColumn如何在範圍(「A5:D5」)中。選擇,因爲每次都會變化?
我當前的代碼:
Range("A5:D5").Select
With Selection.Borders(xlEdgeTop)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = xlAutomatic
End With
With Selection.Borders(xlEdgeBottom)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = xlAutomatic
End With