Quick question: I have a cell that can have as value or a number or the string "NN"
I wrote this line of code:
If Not IsNumeric(Cells(c, 64)) Or Cells(c, 64) <> "NN" Then
errCell.Value = "Wrong Div"
errCell.Interior.Color = RGB(255, 0, 0)
GoTo Boucle
End If
I apply to a cell which is a number But I get an error... Any lead would be great Thank you
Wrong Divmessage ... basically the macro compiles well but it should not specify this error since the cell is a numberOr>>Andshould fix it