Vlookup index match across multiple sheets and average values

goblue667

New Member
Joined
Aug 12, 2019
Messages
11
I have a list of Golfers in my "Summary" tab where I want my vlookup to find the golfers name in each of the four sheets and then look at a specific column and average those values in the summary sheet. Is this possible? I have been looking around and have not seen anything pertaining to the same index match across sheets....
 

Excel Facts

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.
1592917573379.png

Above is the Summary sheet that I need Finish Position to be averaged across all sheets.
1592917623917.png

Above is what Sheet 1,2,3,4 look like. I need Column A to Match column A in Summary sheet and then Column B is the values I need averaged.
 
Upvote 0
Create a list of the sheets that you want to average & then name it SheetList.
You can then use
=IFERROR(SUMPRODUCT(SUMIF(INDIRECT("'"&SheetList&"'!A3:A30"),A2,INDIRECT(SheetList&"!I3:I30")))/SUMPRODUCT(COUNTIF(INDIRECT("'"&SheetList&"'!A3:A30"),A2)),"")
 
Upvote 0
Create a list of the sheets that you want to average & then name it SheetList.
You can then use
=IFERROR(SUMPRODUCT(SUMIF(INDIRECT("'"&SheetList&"'!A3:A30"),A2,INDIRECT(SheetList&"!I3:I30")))/SUMPRODUCT(COUNTIF(INDIRECT("'"&SheetList&"'!A3:A30"),A2)),"")

So create a new tab and list the sheets with their exact names and then call the tab SheetList?

and then put that formula in column B and then fill down?
 
Upvote 0
Not quite, you need to create a list of the sheets, on the summary sheet or a new sheet, then select the cells & in the name box type SheetList.

1592939119735.png
 
Upvote 0

Forum statistics

Threads
1,214,944
Messages
6,122,391
Members
449,080
Latest member
Armadillos

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