I have the following piece of code:
Range("C13:Y21").Select
For Each cell2 In Selection
If cell2 = "-0.0568" Then
x = 1000
End If`
Next cell2
I want to discover the value -0.0568, but the issue I have is that when the value comes up, Visual Basic sees it as being equal to 0. I obviously want Visual Basic to see the value for what it actually is and not rounded. Could someone spot the mistake I'm making?