Dynamic Table Lookup

savvysum

New Member
Joined
Jun 22, 2022
Messages
17
Office Version
  1. 365
Platform
  1. MacOS
Using google sheets, is there a way to look up a value on the vertical & horizontal axes between two numbers?
If years of service is 2.8 and company growth is 18.8, how can a lookup formula return 10%?

Screen Shot 2022-09-08 at 2.33.12 PM.png


We are rounding down on both years of service & company growth.
Company growth: greater than equal to 10% & less than 20%; return in the 10% column.
Years of Service: greater than equal to 2 & less than 3; return in the 2-year row.

Company Revenue Growth %
Years of Service10%20%30%40%
00%0%0%0%
10%0%0%0%
210%12%14%16%
315%17%19%21%
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
try this:
--------------------
Book1
ABCDEFGH
1Company Revenue Growth %years2.8
2Years of Service10%20%30%40%growth18.80%
300%0%0%0%return10%
410%0%0%0%
5210%12%14%16%
6315%17%19%21%
Sheet1
Cell Formulas
RangeFormula
H3H3=INDEX(B3:E6,MATCH(H1,A3:A6,1),MATCH(H2,B2:E2,1))
 
Upvote 0
Solution

Forum statistics

Threads
1,215,787
Messages
6,126,905
Members
449,348
Latest member
Rdeane

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