A2 = 0.9464
B2 = 0.9
OR
A2 = 0.14785
B2 = 0.1
How does one write a VBA code stating that if A2 is within .1 of B2, then TRUE, else FALSE?
Thanks folks!
The above code continues to give me :#VALUE! and it's irritating me to no end. I've cleaned, trimmed,..... etc... AHHHH!
B2 = 0.9
OR
A2 = 0.14785
B2 = 0.1
How does one write a VBA code stating that if A2 is within .1 of B2, then TRUE, else FALSE?
Thanks folks!
Code:
=AND(A2<=B2+0.1,A2>=B2-0.1)
The above code continues to give me :#VALUE! and it's irritating me to no end. I've cleaned, trimmed,..... etc... AHHHH!
Last edited: