Returning Value from range array

gregz12345

New Member
Joined
Sep 19, 2018
Messages
7
Hello,

I'm looking to inquire about how to return a country's cost, based on a given weight.

The issue is that the weights I'm looking up against have predesignated weight breaks, the given weights ('B' below) may fall between the range.

I'm ultimately looking to return the rounded up value.

EG: weight .332 lbs for UK should return $4.74

Thank you!




A

[TABLE="width: 299"]
<colgroup><col><col span="2"></colgroup><tbody>[TR]
[TD]Weight (lb)[/TD]
[TD]Canada[/TD]
[TD]United Kingdom[/TD]
[/TR]
[TR]
[TD]0.0625[/TD]
[TD]$3.41[/TD]
[TD]$3.21[/TD]
[/TR]
[TR]
[TD]0.1250[/TD]
[TD]$3.64[/TD]
[TD]$3.52[/TD]
[/TR]
[TR]
[TD]0.1875[/TD]
[TD]$3.88[/TD]
[TD]$3.82[/TD]
[/TR]
[TR]
[TD]0.2500[/TD]
[TD]$4.12[/TD]
[TD]$4.13[/TD]
[/TR]
[TR]
[TD]0.3125[/TD]
[TD]$4.36[/TD]
[TD]$4.43[/TD]
[/TR]
[TR]
[TD]0.3750[/TD]
[TD]$4.59[/TD]
[TD]$4.74[/TD]
[/TR]
[TR]
[TD]0.4375[/TD]
[TD]$4.83[/TD]
[TD]$5.04[/TD]
[/TR]
</tbody>[/TABLE]



B

[TABLE="width: 258"]
<colgroup><col><col></colgroup><tbody>[TR]
[TD="align: right"]0.332[/TD]
[TD]United Kingdom[/TD]
[/TR]
[TR]
[TD="align: right"]0.334[/TD]
[TD]United Kingdom[/TD]
[/TR]
[TR]
[TD="align: right"]0.349[/TD]
[TD]United Kingdom[/TD]
[/TR]
[TR]
[TD="align: right"]0.354[/TD]
[TD]United Kingdom[/TD]
[/TR]
[TR]
[TD="align: right"]0.356[/TD]
[TD]United Kingdom[/TD]
[/TR]
[TR]
[TD="align: right"]0.359[/TD]
[TD]United Kingdom[/TD]
[/TR]
[TR]
[TD="align: right"]0.381[/TD]
[TD]United Kingdom[/TD]
[/TR]
[TR]
[TD="align: right"]0.385[/TD]
[TD]United Kingdom[/TD]
[/TR]
[TR]
[TD="align: right"]0.397[/TD]
[TD]United Kingdom[/TD]
[/TR]
[TR]
[TD="align: right"]0.398[/TD]
[TD]United Kingdom[/TD]
[/TR]
[TR]
[TD="align: right"]0.398[/TD]
[TD]United Kingdom[/TD]
[/TR]
</tbody>[/TABLE]
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
Re: Help Returning Value from range array

With a weight in E1 and country in F1 try:

=INDEX($B$2:$C$8,MATCH(1,INDEX(--($A$2:$A$8>=E1),0),0),MATCH($F1,$B$1:$C$1,0))
 
Last edited:
Upvote 0

Forum statistics

Threads
1,223,227
Messages
6,170,848
Members
452,361
Latest member
d3ad3y3

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