Allocating a value from a cell

B

babygoode

Hi,
Is there any way to allocate a value to a cell depending what is i
another cell, so if A1=yes then A2=5 or B1=no then B2=10

Hope that makes sense

Thanks
 
M

Morrigan

A2 = IF(A1="yes",5)
B2 = IF(B1="no",10)

Hi,
Is there any way to allocate a value to a cell depending what is in
another cell, so if A1=yes then A2=5 or B1=no then B2=10

Hope that makes sense

Thanks,
 
B

Brian Synowiec

Sure You would put this in A2:

=IF(A1="Yes",5,"")

and this in B2:

=IF(B1="No",10,"")

Brian
 
Top