Range Lookup

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

Guest

I want to do something like a vlookup but instead of looking for a specific
number, I want to look for a range and then return a value. An example would
be I want to return a letter grade based on test scores. I have the low end
of the ranges in column A, high end in column B and in this case, the Grade
would be in Column C. How do I do this without having to write a long IF
statement?
 
Try...

=VLOOKUP(D1,$A$1:$C$10,3,TRUE)

....where D1 contains your lookup value.

Hope this helps!
 
Oh - so that's what "True" does. Thanks, I always just typed "False"
automatically...
 

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