With your "Rate Bands" changed to >= rather than <=
Make two Dependant Named Ranges, this will allow you to add different carriage methods, say "Air Mail", and each method can have a varying number of rate bands. (Total rows for all methods = 48, in this workbook)
1/. DeliveryBands
Refers to:=
=INDEX(Sheet1!$A$2:$A$50,MATCH(Sheet2!$A2,Sheet1!$B$2:$B$50,0),1):INDEX(Sheet1!$A$2:$A$50,MATCH(Sheet2!$A2,Sheet1!$B$2:$B$50,0)+COUNTIF(Sheet1!$B:$B,Sheet2!$A2)-1,1)
2/. DeliveryRates
Refers to:=
=INDEX(Sheet1!$C$2:$F$50,MATCH(Sheet2!$A2,Sheet1!$B$2:$B$50,0),MATCH(Sheet2!$B2,Sheet1!$C$1:$F$1,0)):INDEX(Sheet1!$C$2:$F$50,MATCH(Sheet2!$A2,Sheet1!$B$2:$B$50,0)+COUNTIF(Sheet1!$B:$B,Sheet2!$A2)-1,MATCH(Sheet2!$B2,Sheet1!$C$1:$F$1,0))
Then in Sheet2 D2
=LOOKUP(C2,DeliveryBands,DeliveryRates)
Drag/Fill Down
Bookmarks