Hi
I'm struggling with this nested IF statement. I need to my data set to tell me if
My statement is as follows
=IF(K20<1000,"1","1"),IF(AND(K20>1000,K20<2000),"2","1"),IF(AND(K20)(K20>2000,K20<3000),"3","1"),IF(K20>3000,"error","error")
Any suggestion on how to correct this please?
I'm struggling with this nested IF statement. I need to my data set to tell me if
- The value is less than 1000, I need the result to display "1"
- If the value is above 1000, but less than 2000, to display "2"
- If the value is above 2000 but less than 3000, to display "3"
- If the value is above 3000 to display "error"
My statement is as follows
=IF(K20<1000,"1","1"),IF(AND(K20>1000,K20<2000),"2","1"),IF(AND(K20)(K20>2000,K20<3000),"3","1"),IF(K20>3000,"error","error")
Any suggestion on how to correct this please?