This VBA code verifies calculated cells. If the value is over $500.00 or has #N/A, then it should color the entire row and bold font.
But I keep getting this Type Mismatch
error:
Dim lngCounter As Long
Dim Lastrow As Long
Lastrow = ActiveSheet.Range("A65536").End(xlUp).Row
For lngCounter = 3 To Lastrow
With Cells(lngCounter, "J")
If .Value >= 500 Or IsError(Cells) Then
Cells(lngCounter, "I").Interior.ColorIndex = 44
Cells(lngCounter, "J").Interior.ColorIndex = 44
Rows(lngCounter).Font.Bold = True
Else
End If
End With
Next lngCounter