Excel和VBscript给我无效的过程调用或参数

时间:2014-12-08 19:41:31

标签: excel vbscript

我正在编写一个VBScript来创建一个日历,在这一行,我收到的错误是

With objExcel.Range("A1:U28")
    '.FormatConditions.Add xlCellValue, xlEqual, "=TODAY()" --- CRASH
    objExcel.Range("A1:U28").FormatConditions.Add xlCellValue,xlEqual,"=Today()" // CRASH
    .FormatConditions(1).Font.ColorIndex = 2
    .FormatConditions(1).Interior.ColorIndex = 1
End With

错误:无效的过程调用或参数

1 个答案:

答案 0 :(得分:2)

在VBScript中,您必须明确定义xlCellValue之类的常量(并且您不能通过:=使用命名参数)。 cf info