邊框我試圖添加行之間的邊界時,在第1點的數據發生變化。此代碼分爲.LineStyle = xlContinuous
。我得到的錯誤是「無法設置Border類的LineStyle屬性」。條件格式在單邊
有代碼或這樣做的另一種方法錯誤?
Sub AddBorders()
With Range("A:B").FormatConditions.Add(Type:=xlExpression, Formula1:="=A1<>A2")
With .Borders(xlEdgeBottom)
.LineStyle = xlContinuous
.ColorIndex = xlAutomatic
.TintAndShade = 0
.Weight = xlThin
End With
End With
End Sub
這是奇怪的,因爲Range.Borders(xlEdgeBottom)是智能感知什麼是真正來了。這工作正是我想要的。謝謝! – Ripster
@Ripster是的,我發現自己很奇怪。看起來這不是'Range.Borders'它是'FormatCondition'屬性的一部分。因爲是的,'xlEdgeBottom'是你用於'Range.Borders()'的 – chancea