IF/THEN Formula

K

kwoodward

Hi!

I am trying to set up a formula that looks in a cell for one of four specific
numbers, then based on the number in the cell, it will input a value from
another cell. I think my problem is that I'm trying to get it to input the
product of a formula, but I don't know how to get around that.

Any suggestions or tips would be appreciated. Thanks!
 
F

Fred Smith

Whether a cell has a number or is the result of a formula is immaterial. It
looks the same to Excel. Also, showing us what you tried will always result
in better advice, as we have a better idea of what you are trying to do.

As a guess, see if this helps:
=if(or(a1=1,a1=2,a1=3,a1=4),a2,"none of the values found")

Regards,
Fred.
 
L

Luke M

Sounds like your doing a LOOKUP, or CHOOSE.

As Fred said, if you post more about what you are trying to do, we can be
more helpful.
 
K

kwoodward

Fred said:
Whether a cell has a number or is the result of a formula is immaterial. It
looks the same to Excel. Also, showing us what you tried will always result
in better advice, as we have a better idea of what you are trying to do.

As a guess, see if this helps:
=if(or(a1=1,a1=2,a1=3,a1=4),a2,"none of the values found")

Regards,
Fred.
[quoted text clipped - 6 lines]
Any suggestions or tips would be appreciated. Thanks!


Here's the formula:

=IF(E22=0,0):IF(E22=1,$G$9):IF(E22=2,$G$10):IF(E22=3,$G$11)

Where e22 is the number 0, 1, 2, or 3.
So if a 0 is in e22, put in 0
If a 1 is in e22, put in the number from cell G9
If a 2 is in e22, put in the number from cell g10
If a 3 is in e22, put in the number from cell g11

Cells G9, G10 and G11 were originally the sum of another cell, that was
calculated with a formula. I changed this to paste the value of the formula
instead of the sum, but it didn't seem to help.

Thanks for your assistance!
 
K

kwoodward

Luke said:
Sounds like your doing a LOOKUP, or CHOOSE.

As Fred said, if you post more about what you are trying to do, we can be
more helpful.
[quoted text clipped - 4 lines]
Any suggestions or tips would be appreciated. Thanks!


Here's the formula:

=IF(E22=0,0):IF(E22=1,$G$9):IF(E22=2,$G$10):IF(E22=3,$G$11)

Where e22 is the number 0, 1, 2, or 3.
So if a 0 is in e22, put in 0
If a 1 is in e22, put in the number from cell G9
If a 2 is in e22, put in the number from cell g10
If a 3 is in e22, put in the number from cell g11

Cells G9, G10 and G11 were originally the sum of another cell, that was
calculated with a formula. I changed this to paste the value of the formula
instead of the sum, but it didn't seem to help.

Thanks for your assistance!
 
D

David Biddulph

You are trying to nest a number of IF statements, so you need to think about
the placing of the parentheses and of your list separators. Excel help will
tell you about the syntax of an IF statement, and about nesting functions.

=IF(E22=0,0,IF(E22=1,$G$9,IF(E22=2,$G$10,IF(E22=3,$G$11,"answer
undefined"))))

Another option is to use VLOOKUP, which again is described in Excel help.
--
David Biddulph

kwoodward said:
Fred said:
Whether a cell has a number or is the result of a formula is immaterial.
It
looks the same to Excel. Also, showing us what you tried will always
result
in better advice, as we have a better idea of what you are trying to do.

As a guess, see if this helps:
=if(or(a1=1,a1=2,a1=3,a1=4),a2,"none of the values found")

Regards,
Fred.
[quoted text clipped - 6 lines]
Any suggestions or tips would be appreciated. Thanks!


Here's the formula:

=IF(E22=0,0):IF(E22=1,$G$9):IF(E22=2,$G$10):IF(E22=3,$G$11)

Where e22 is the number 0, 1, 2, or 3.
So if a 0 is in e22, put in 0
If a 1 is in e22, put in the number from cell G9
If a 2 is in e22, put in the number from cell g10
If a 3 is in e22, put in the number from cell g11

Cells G9, G10 and G11 were originally the sum of another cell, that was
calculated with a formula. I changed this to paste the value of the
formula
instead of the sum, but it didn't seem to help.

Thanks for your assistance!
 
K

kwoodward

David said:
You are trying to nest a number of IF statements, so you need to think about
the placing of the parentheses and of your list separators. Excel help will
tell you about the syntax of an IF statement, and about nesting functions.

=IF(E22=0,0,IF(E22=1,$G$9,IF(E22=2,$G$10,IF(E22=3,$G$11,"answer
undefined"))))

Another option is to use VLOOKUP, which again is described in Excel help.[quoted text clipped - 30 lines]
Thanks for your assistance!

This was incredibly helpful. Thank you so much!
 

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

Top