if command

  • Thread starter Thread starter chris832
  • Start date Start date
C

chris832

i'm trying to make an if command work. i'm trying to make it look to see if a
number in a cell is between two numbers and then send it to another to be
multiplied . if the number is 1-11 look at one cell if its 12-23 look at
another and so on. my goal is to have something like this:

(a1+a1+b1=b1) * (look at what c cell number range is and send it to the
corresponding cell to be multiplied)

i have to link what i multiply to this cell and can't be in the formula
because the number i multiply it by is its own formala and constantly
changes. if that makes any sense to anybody.

thanks in advance for anybody with any ideas.
 
You could use nested IFs as long as it doesn't exceed 7.

=(A1+A1+B1)*IF(C1<=11,"CorrespondingCell1",IF(C1<=23,"CorrespondingCell2"))

Otherwise, you should probably look into VLOOKUP.

HTH,
Paul
 
yeah , your right. good idea

PCLIVE said:
You could use nested IFs as long as it doesn't exceed 7.

=(A1+A1+B1)*IF(C1<=11,"CorrespondingCell1",IF(C1<=23,"CorrespondingCell2"))

Otherwise, you should probably look into VLOOKUP.

HTH,
Paul
 

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

Similar Threads

The real Horizontal Formula question 4
up and down array 5
Stuck With Excel Problem 6
In data range select final value. 2
Formula 12
Conditional Formatting 2
Multiple "If" 9
Round then round? 5

Back
Top