Forum Discussion
INDEX MATCH with VLOOKUP
- Feb 10, 2026
Hello WendyJV,
Use SUMIFS instead of INDEX/MATCH to handle multiple matches:=SUMIFS(INDEX('FY26 Income Statement Data'!$A$4:$AB$2158,0,MATCH(C$1,'FY26 Income Statement Data'!$A$4:$AB$4,0)),'FY26 Income Statement Data'!$A$4:$A$2158,$A7)
Explanation:
- MATCH(C$1,'FY26 Income Statement Data'!$A$4:$AB$4,0) finds the correct column.
- INDEX(...,0,...) returns the entire column for that header.
- SUMIFS sums all rows where Column A equals $A7.
Hello WendyJV,
Use SUMIFS instead of INDEX/MATCH to handle multiple matches:
=SUMIFS(INDEX('FY26 Income Statement Data'!$A$4:$AB$2158,0,MATCH(C$1,'FY26 Income Statement Data'!$A$4:$AB$4,0)),'FY26 Income Statement Data'!$A$4:$A$2158,$A7)
Explanation:
- MATCH(C$1,'FY26 Income Statement Data'!$A$4:$AB$4,0) finds the correct column.
- INDEX(...,0,...) returns the entire column for that header.
- SUMIFS sums all rows where Column A equals $A7.
Amazing! That was it :)