当我运行此VBA代码时,出现错误。
Option Explicit
Sub CreateBorder()
ActiveCell.CurrentRegion.BorderAround
LineStyle:=xlDot, Weight:=xlThick, Color=RGB(255,0,0)
End Sub
错误似乎出现在Sub CreateBorder()行中。问题是什么?
答案 0 :(得分:4)
有两个问题:
_
):=
(您使用Color=...
)所以它可以是:
ActiveCell.CurrentRegion.BorderAround LineStyle:=xlDot, Weight:=xlThick, Color:=RGB(255, 0, 0)
或
ActiveCell.CurrentRegion.BorderAround _
LineStyle:=xlDot, Weight:=xlThick, Color:=RGB(255, 0, 0)