10.5 would work, 10 1/2 not so much.
Create a table with height going down the left as row labels, and widths going across the top of the table as headers. Do not enter the "range" as 10-14, just enter that value of the START of each range. When the next range starts, that indicates the prior range has ended. It will look like this:
A B C D E F
1 0 12 18 24 30
2 0 50 55 64 99 100
3 12 100 125 155 190 250
4 20 150 180 219 289 350
5 36 250 305 374 479 600
6 30 400 485 593 768 950
Now you can use an INDEX(Match, Match) formula to get the price from the grid.
Height in A25, Width in B25, this formula in C25:
=INDEX($B$2:$F$6, MATCH(B25, $A$2:$A$6, 1), MATCH(C25, $B$1:$F$1, 1))
Bookmarks