下面是Excel表格:
我需要遍历列K,只在列K是数字的行中执行计算。
由于我有空白单元格,IsNumeric
函数无法正常工作。
我尝试了下面的代码,但是IsEmpty
函数对于填充的单元格返回False
:
Sub mysub()
For i = 24 to lastRow
If Len(Cells(i, 11)) = 0 And IsEmpty(Cells(i, 11)) = False Then
'rest of the code
End if
Next i
End sub
我该怎么办才能解决呢?
1条答案
按热度按时间t9aqgxwy1#
将'Planilha1'更改为您的工作表,尝试如下操作: