index match function on multiple worksheet

maeyks

Board Regular
Joined
Aug 20, 2010
Messages
127
hello,

can i actually use match-function looking for a single item if it is located on multiple worksheets?
thank you.


Mike
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
Use nested MATCH within IFERROR, e.g.

=IFERROR(MATCH(A1,Sheet1!A1:A100,0),IFERROR(MATCH(A1,Sheet2!A1:A100,0),IFERROR(MATCH(A1,Sheet3!A1:A100,0),... etc )))

Return index if A1 is found in Sheet1, if not
return index if A1 is found in Sheet2, if not
return index if A1 is found in Sheet3, ...etc
 
Last edited:
Upvote 0
Hi

Its like this. In sheet 1, I have the following:

lasagna pasta (noodles)
strawberry cheesecake (cakes)
lemonade (beverage)
savory pie (pies)

the RECIPES for the 4 abovementioned items are in worksheets 2 to 5, respectively. To avoid using index match function with different formulas, can there be a single index match function formula that will look into all of these four recipes and return the value

In effect I can write all my recipes categorically among the four worksheets but the first worksheet will have all the centralized items

Hope I make sense

Thank you
 
Upvote 0

Forum statistics

Threads
1,223,896
Messages
6,175,259
Members
452,626
Latest member
huntinghunter

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