![Old](images/statusicon/post_old.gif)
12th November 2006, 03:05 PM
|
Member
|
|
Join Date: Mar 2005
Posts: 219
|
|
Quote:
Originally Posted by ingust
Hi all
can anyone help me place the following in an EXCEL single cell if possible ,
if b1 = < 1250 then divisor = 4 , if b1 = > 1251 and b1 = < 1450 then divisor=3 , if b1 = > 1451 and b1 = < 1600 then divisor = 2 , if b1 > 1600 then divisor = 1.5 ,
Regards
Ingust
|
The formula to use is =IF(B1<=1250,4,IF(B1<=1450,3,IF(B1<=1600,2,1.5)))
|