Match/Lookup Statements

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

Guest

I would like to create an equation that returns mult. results based on one
cell.

If "C1" = 4.0 - 3.5, =4.0
If "C1" = 3.49 - 2.5 = 3.0
If "C1" = 2.49 - 1.10 = 2.0
If "C1" = 1.09 - 0 = 0.0

I believe that I need a Lookup of Match Statment, but I'm not sure how to
write one. Thanks for the help!
 
=VLOOKUP(C1,{0,0;1.1,2;2.5,3;3.5,4},2)*(AND(C1>=0,C1<=4))
the *AND part of the formula will ensure that the values are within 0 and 4
 

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

macro used to change colors 12
Double Lookup 5
Complex Count formula 17
Changing GPA to Ltr Grade 8
IF/AND Formula Problem 9
Lookup 2
multiple if statements 4
Ignoring zero cells in IF statements 5

Back
Top