Offset Match (on another tab)

Mandy_

New Member
Joined
Jan 29, 2021
Messages
36
Office Version
  1. 365
Platform
  1. MacOS
Hi,

I'm creating a contents page for a recipe book. And my excel workbook has tabs for each section (Contents, Breakfast, Lunch, Dinner etc), and my contents page has a list of all recipes in each section. 8 recipes for Breakfast, 12 for dinner etc). As my recipes are changing/adding more later in time - I'd like the contents page to dynamically update.

I'm able to match the title on the contents page to the Title of the recipe in the section, but am then unable to get the page number.

=match(i10,Breakfast!A:A,0)
where i10 is the recipe name.

The page number will always appear in column G - 44 rows below the Title name.

so if match = 3 then the page number is on G47

or if match = 97 then the page number is on G141

The contents page and the page of the recipe are in separate tabs.


I've tried offset match and index match - but am having some difficulty.

Thank you for your time,
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
How about
Excel Formula:
=INDEX(Breakfast!G:G,MATCH(I10,Breakfast!A:A,0)+44)
 
Upvote 0
Solution
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,215,103
Messages
6,123,112
Members
449,096
Latest member
provoking

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