I have sales areas of various stores, I need to classify them in to the following bandings:
2000sqft
2000-3000sqft
3000-5000sqft
5000-8000sqft
8000-20000sqft
20000-30000sqft
30000sqft
I've been using the following formual, but it doesn't seem to work. It just returns "30000sqft+"
=IF(K2<2000,"<2000sqft",IF(2000>=K3<3000,"2000-3000sqft",IF(3000>=K3<5000,"3000-5000sqft",IF(5000>=K3<8000,"5000-8000sqft",IF(8000>=K3<20000,"8000-20000sqft",IF(20000>=K3<30000,"20000-30000sqft","30000sqft+"))))))
2000sqft
2000-3000sqft
3000-5000sqft
5000-8000sqft
8000-20000sqft
20000-30000sqft
30000sqft
I've been using the following formual, but it doesn't seem to work. It just returns "30000sqft+"
=IF(K2<2000,"<2000sqft",IF(2000>=K3<3000,"2000-3000sqft",IF(3000>=K3<5000,"3000-5000sqft",IF(5000>=K3<8000,"5000-8000sqft",IF(8000>=K3<20000,"8000-20000sqft",IF(20000>=K3<30000,"20000-30000sqft","30000sqft+"))))))