Allocating a value from a cell

  • Thread starter Thread starter babygoode
  • Start date Start date
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
 
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,
 
Sure You would put this in A2:

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

and this in B2:

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

Brian
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top