Match Index Function for Coming from Multiple Worksheets

maeyks

Board Regular
Joined
Aug 20, 2010
Messages
127
Hello to all,

I am using this formula:

=IFERROR(INDEX('[Pie Face Central ******* Food Costing File.xlsx]Recipe'!$L$2:$L$3100,MATCH(U466,'[Pie Face Central ******* Food Costing File.xlsx]Recipe'!$H$2:$H$3100,FALSE),1),"")

My question is, if I have the reference cell located on different worksheet (but has no duplicate, other than the RECIPE worksheet), what will be the formula I will use? That it will just simply go through all the worksheets locating the said reference cell?

Thank you.
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
You mean checking multiple sheets for a value? You'd have to have the formula explicitly check each sheet (using IF/IFERROR statements or concatenation) or use VBA.
 
Upvote 0
Pathfinder,

Yes, its grouped in different sheets, but there is not repetition. Not really a VBA expert here. Trying to figure that one out.
Thanks
 
Upvote 0
If you don't have many sheets to check, you could just copy that entire formula and paste it into the error part of that IFERROR function (nesting).
Code:
[COLOR=#333333]=IFERROR(INDEX('[/COLOR][COLOR=#333333]Recipe[/COLOR][COLOR=#0000ff][B]1[/B][/COLOR][COLOR=#333333]'!$L$2:$L$3100,MATCH(U466,'[/COLOR][COLOR=#333333]Recipe[/COLOR][COLOR=#0000ff][B]1[/B][/COLOR][COLOR=#333333]'!$H$2:$H$3100,FALSE),1),
[/COLOR][COLOR=#333333]IFERROR(INDEX('[/COLOR][COLOR=#333333]Recipe[/COLOR][COLOR=#0000ff][B]2[/B][/COLOR][COLOR=#333333]'!$L$2:$L$3100,MATCH(U466,'[/COLOR][COLOR=#333333]Recipe[/COLOR][COLOR=#0000ff][B]2[/B][/COLOR][COLOR=#333333]'!$H$2:$H$3100,FALSE),1),[/COLOR][COLOR=#333333]
[/COLOR][COLOR=#333333]IFERROR(INDEX('[/COLOR][COLOR=#333333]Recipe[/COLOR][COLOR=#0000ff][B]3[/B][/COLOR][COLOR=#333333]'!$L$2:$L$3100,MATCH(U466,'[/COLOR][COLOR=#333333]Recipe[/COLOR][COLOR=#0000ff][B]3[/B][/COLOR][COLOR=#333333]'!$H$2:$H$3100,FALSE),1),[/COLOR][COLOR=#333333]"")[/COLOR][COLOR=#333333])[/COLOR][COLOR=#333333])[/COLOR]

The VBA solution would loop through all sheets and use the Cells.Find function to locate the value and then take action as necessary. The next question for the VBA solution is to identify when the macro should be run and to what extent (does it run this Find action on multiple rows, active row, or does it need to identify missing values).
 
Upvote 0
I actually just did this on a worksheet I just did. I will give you what I have (taking out the static IP of my computer of course):

Code:
=IF(D305="L",IFERROR(INDEX('\\IP ADDRESS HERE\1918 repair folder\Bill\Repair Log Pull File\[Lighting Repair Log Master 7.0 working.xlsm]Filterable'!$B:$B,MATCH(G305,'\\IP ADDRESS HERE\1918 repair folder\Bill\Repair Log Pull File\[Lighting Repair Log Master 7.0 working.xlsm]Filterable'!$J:$J,0)),"NEEDS TICKET"),IF(D305="A",IFERROR(INDEX('\\IP ADDRESS HERE\1918 repair folder\Bill\Repair Log Pull File\[Audio Repair Log Master 7.0 Sterling Edition.xlsm]Filterable'!$B:$B,MATCH(G305,'\\IP ADDRESS HERE\1918 repair folder\Bill\Repair Log Pull File\[Audio Repair Log Master 7.0 Sterling Edition.xlsm]Filterable'!$J:$J,0)),"NEEDS TICKET"),IF(D305="G",IFERROR(INDEX('\\IP ADDRESS HERE\1918 repair folder\Bill\Repair Log Pull File\[General Repair Log Master 7.1.xlsm]Filterable'!$B:$B,MATCH(G305,'\\IP ADDRESS HERE\1918 repair folder\Bill\Repair Log Pull File\[General Repair Log Master 7.1.xlsm]Filterable'!$J:$J,0)),"NEEDS TICKET"),IF(D305="V",IFERROR(INDEX('\\IP ADDRESS HERE\1918 repair folder\Bill\Repair Log Pull File\[VSE Repair Log Master 7.0 Sterling Edition.xlsm]Filterable'!$B:$B,MATCH(G305,'\\IP ADDRESS HERE\1918 repair folder\Bill\Repair Log Pull File\[VSE Repair Log Master 7.0 Sterling Edition.xlsm]Filterable'!$J:$J,0)),"NEEDS TICKET"),""))))

Should probably also follow up that this formula searches for ticket numbers(column B) based of barcodes in my document (Column D) and matches them in the document searching in column J.

Hope this helps.

Actually, if anyone has a better solution to what I did, I'm all ears.
 
Upvote 0

Forum statistics

Threads
1,223,905
Messages
6,175,297
Members
452,633
Latest member
DougMo

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