Need help on ouptput against range

A

anoop

Dear All.

Please help on following problem
I have 8 different range as stated below.
Every range has some result Like 0 to 10 has Result A, 11 to 20 has B
and so on..

Col A Col B ColC
Start End Result
0 10 A
11 20 B
21 30 C
31 40 D
41 50 E
51 60 F
61 70 G
70 100 H

Based on some input i want output based on result of above range.
E.g. If my Input is 42 then output should be E
or my input is 9 then putput should be A

How can i make some formula in worksheet to get this type of output.
Please help me on this urgently.

Regards
Anoop
 
B

Bob Umlas

=VLOOKUP(input,B2:C11,2)
for example: =VLOOKUP(42,B2:C11,2) would return E. The data in column A is
not needed for the VLOOKUP formula
Bob Umlas
Excel MVP
 
G

Guest

Hi anoop

With your criteria in A1 to C8, if you want the result in H7, try
=VLOOKUP(H7,A1:C8,3)
 
R

RagDyeR

With your input cell D1:

=LOOKUP(D1,A1:C8)

--

HTH,

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


message
Dear All.

Please help on following problem
I have 8 different range as stated below.
Every range has some result Like 0 to 10 has Result A, 11 to 20 has B
and so on..

Col A Col B ColC
Start End Result
0 10 A
11 20 B
21 30 C
31 40 D
41 50 E
51 60 F
61 70 G
70 100 H

Based on some input i want output based on result of above range.
E.g. If my Input is 42 then output should be E
or my input is 9 then putput should be A

How can i make some formula in worksheet to get this type of output.
Please help me on this urgently.

Regards
Anoop
 

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


Top