What am i doing wrong? Finding cost in a range of Sq. Ft. sizes.
If x is < 32sq ft but > 16 sq ft then $16.00
if x is > 8sq ft but < 16 sq ft then $12.00
if x is > 4sq ft but < 8 sq ft then $10.00
if x is > 0 sq ft but < 4 sq ft then $6.00
What is wrong in my formula?
=IF(E4>16,"$16",IF(E4>8<=16,"$12",IF(E4>4<=8,"$10",IF(E4>0<=4,"$6",""))))
Thanks - Roy
If x is < 32sq ft but > 16 sq ft then $16.00
if x is > 8sq ft but < 16 sq ft then $12.00
if x is > 4sq ft but < 8 sq ft then $10.00
if x is > 0 sq ft but < 4 sq ft then $6.00
What is wrong in my formula?
=IF(E4>16,"$16",IF(E4>8<=16,"$12",IF(E4>4<=8,"$10",IF(E4>0<=4,"$6",""))))
Thanks - Roy