conditional value required on basis of column a

I

ilyaskazi

if cell value of column A1 is between 3000 - 5000 then apply the cel
value of column B1 =9
 
M

mangesh_yadav

In B1 enter:
=IF(AND(A1>=3000,A1<-5000),90,"")

If between 3000 and 5000, then b1 = 90, otherwise it would be blank.


Mangesh
 
A

Aladin Akyurek

ilyaskazi said:
if cell value of column A1 is between 3000 - 5000 then apply the cell
value of column B1 =90

Do you mean:

=IF(AND(A1>=3000,A1<=5000),B1,"")
 
M

Max

Put in B1: =IF(AND(A1>=3000,A1<=5000),90,"")
Copy down

Note that the above will return blanks: "" as the values_if_false
(you didn't specify this)

Adapt to suit ..
 
Top