我试图在我的数据中查找#N / A值,但我得到错误..不知道如何分配"#N / A"进入我的标准..
lastrow2 = ActiveSheet.Cells(Rows.Count, "A").End(xlUp).Row
Dim a As Integer
For a = 6 To lastrow2
If Range("C" & a).Value <> "#N/A" Then
Rows(a).Font.Strikethrough = True
End If
Next a