我试图清除工作表上的所有错误(Range.Errors属性,而不是值错误)。有没有可能没有处理每个单元单独?
.Range("C3").Errors(xlNumberAsText).Ignore = True
工作正常(C3中是否有错误)。
但.Range("C3:F3").Errors(xlNumberAsText).Ignore = True
或.Cells.Errors(xlNumberAsText).Ignore = True
没有。
看起来MSDN Excel VBA reference,该属性应适用于任何范围(无论是否是多单元格),不是吗?
表达 .Errors
expression 表示Range对象的变量。