Getting Answers To Appear In A Different Cell

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am wondering if there is a way to get answers of a function to appear in a
different than the formula itself.

Example:
=IF((a1=1)*and(a2=1), display answer from a3 in cell
a19,IF((a1=1)*and(a2=2), display answer from a3 in cell a20,0)))

is this even possible?

thanks
 
Formulas control only the cell that they are in.
So, if you want A19 and A20 to display something, put formulas *in* them.

Enter in A19:
=IF(AND(A1=1,A2=1),A3,"")

Enter in A20:
=IF(AND(A1=1,A2=2),A3,"")
--

HTH,

RD
==============================================
Please keep all correspondence within the Group, so all may benefit!
==============================================

I am wondering if there is a way to get answers of a function to appear in a
different than the formula itself.

Example:
=IF((a1=1)*and(a2=1), display answer from a3 in cell
a19,IF((a1=1)*and(a2=2), display answer from a3 in cell a20,0)))

is this even possible?

thanks
 

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