Hey all,
I am using the following formula for a rating system based on the Value of a Cell (A1).
=IF(A1=5,4,IF(A1=5,4,IF(A1=4,3,IF(A1=3,2,IF(A1=2,1,IF(A1=1,0,))))))
It works great until I try and change the first part of the formula:
=IF(A1<=5,4,IF(A1=5,4,IF(A1=4,3,IF(A1=3,2,IF(A1>=2,1,IF(A1=1,0,))))))
Adding the Greater Than sign to the first part of the formula:
=IF(A1<=5,4,
causes it to return a 0 for anything greater than 10. Can anyone give me a pointer on this one?
Thanks!
Mike
I am using the following formula for a rating system based on the Value of a Cell (A1).
=IF(A1=5,4,IF(A1=5,4,IF(A1=4,3,IF(A1=3,2,IF(A1=2,1,IF(A1=1,0,))))))
It works great until I try and change the first part of the formula:
=IF(A1<=5,4,IF(A1=5,4,IF(A1=4,3,IF(A1=3,2,IF(A1>=2,1,IF(A1=1,0,))))))
Adding the Greater Than sign to the first part of the formula:
=IF(A1<=5,4,
causes it to return a 0 for anything greater than 10. Can anyone give me a pointer on this one?
Thanks!
Mike