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

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
USe

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

Forum statistics

Threads
1,223,896
Messages
6,175,260
Members
452,627
Latest member
KitkatToby

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