In cell A1 I would insert value from 0 to 999
What I'm trying to do is
If the value of A1 is equal or greater than 0, but equal or less than 333, the answer would be 1
If the value of A1 is equal or greater than 334, but equal or less than 666, the answer would be 2
If the value of A1 is equal or greater than 667, but equal or less than 999, the answer would be 3
Here is how I'ver tried to write it, but no matter what value I put if A1, I keep getting an anwer of 1?
=IF(A1<=0>=333,1,IF(A1<=334>=666,2,IF(A1<=667>=999,3)))
Thanks is advance for your help.
Bookmarks