删除带范围的空白条件格式

我试图删除范围内的空白条件格式,但下面的公式给我一个错误,我做错了什么?

Worksheets("SINGLE REPORT").Range(Cells(34, 3), Cells(64,22)).FormatConditions.Delete _ Type:=xlCellTypeBlanks 

这是另一种方法(可能稍微快一点):

 Worksheets("SINGLE REPORT").Range(Cells(34, 3), Cells(64,22)).SpecialCells(xlCellTypeBlanks).FormatConditions.Delete 

错误在Type:= xlCellTypeBlanks中。 没有这个再试一次。

第一种办法是空白问题

 For Each cell In Range(Cells(34, 3), Cells(64, 22)) If IsEmpty(cell) Then cell.FormatConditions.Delete End If Next