在If语句中使用CountIf语句

时间:2014-08-31 21:27:42

标签: excel excel-vba if-statement countif vba

我正在尝试使用If函数在VBA中编写CountIf语句来检查列中是否存在某个字符串,但是我收到了编译错误。有谁知道我做错了什么?

这是我的代码:

Dim result as string

If CountIf(C8:C15, "FAIL") > 0 Then result = "FAIL"*

1 个答案:

答案 0 :(得分:0)

尝试此操作(更改工作表名称后):

If WorksheetFunction.CountIf(Worksheets("Sheet1").Range("C8:C15"), "FAIL") > 0 Then result = "FAIL"