Return Another Cell If One Cell Equals Number?

JMITCH26

Board Regular
Joined
May 18, 2005
Messages
91
I'm trying to get Cell E4 to look at Cell C3.
Then take the number from C3 and find the equal number from list of numbers B21:B30.
Then report back the percentage from the list next to that number.

Cells
C3 = 8

Cells
B21 = 1
B22 = 2
B23 = 3
B24 = 4
B26 = 5
B26 = 6
B28 = 7
B29 = 8
B30 = 9
B31 = 10

Cells
C21 = 7%
C22 = 9%
C23 = 14%
C24 = 17%
C26 = 21%
C26 = 24%
C28 = 28%
C29 = 31%
C30 = 35%
C31 = 39%

Example:

If Cell
C3=8

Then
E4=31%

any help on this will be great thank you.
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
USe

Code:
=VLOOKUP(C3,$B$21:$C$30,2,0)
 
Upvote 0

Forum statistics

Threads
1,225,739
Messages
6,186,743
Members
453,370
Latest member
juliewar

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top