Lookup/ Index/ Match question

GinChiarello

New Member
Joined
Jul 30, 2013
Messages
1
Hi -- I am trying to write a formula that will return to me a % based on a given age and height.

Starting in cell D4 I have this:

<1%1%3%5%10%25%30%50%75%
030.531.532.533.534.535.53636.537
131.532.533.534.535.536.536.7537.2538
231.753232.253333.5343636.239
33232.253435373839.24041
43333.53636.53738394243

<tbody>
</tbody>

First -- if I have a 1 year old that is 32.5 inches tall -- how do I write a formula to return the % ---> the answer is 1%

AgeHeightWhat I want returned (answer)
132.51%
33825%

<tbody>
</tbody>

Second -- if is possible to write a formula where the height might not hit an exact height number listed, so instead it returns the lower % --> for a 1 year old that is 34.0 inches tall ---> the answer would be 3% (since 34.5% is 5% and 33.5% is 3%)

AgeHeightWhat I want returned (answer)
1343%
439.530%

<tbody>
</tbody>

Thank you in advance,
Ginny
 

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)
Question 1.

Let A1:J6 on Sheet1 house the data including column and row headers.

Sheet2

C2, just enter and copy down:

=LOOKUP($B2,INDEX(Sheet1!$B$2:$J$6,MATCH($A2,Sheet1!$A$2:$A$6,0),0),Sheet1!$B$1:$J$1)
 
Upvote 0

Forum statistics

Threads
1,216,099
Messages
6,128,822
Members
449,469
Latest member
Kingwi11y

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