Forum Discussion
byohojcu
Oct 25, 2022Copper Contributor
INDEX-MATCH multiple results based on one cell, to fill horizontally in same row
Hi all, First time posting here. (I have Excel 2019.) I've been experimenting with INDEX-MATCH function combinations over the last year or so, and I'm trying to create a more complicated formula ...
- Oct 26, 2022
=IFERROR(INDEX(NSGP_Pull!$D$3:$D$425, SMALL(IF((NSGP_Pull!$E$3:$E$425=$C2) * ( NSGP_Pull!$F$3:$F$425=$F2), ROW(NSGP_Pull!$D$3:$D$425)-MIN(ROW(NSGP_Pull!$D$3:$D$425))+1), COLUMNS($C$2:C2))),"")
This works in my sheet. Enter the formula with ctrl+shift+enter if you don't work with Office365 or Excel 2021.
OliverScheurich
Oct 26, 2022Gold Contributor
=IFERROR(INDEX(NSGP_Pull!$D$3:$D$425, SMALL(IF((NSGP_Pull!$E$3:$E$425=$C2) * ( NSGP_Pull!$F$3:$F$425=$F2), ROW(NSGP_Pull!$D$3:$D$425)-MIN(ROW(NSGP_Pull!$D$3:$D$425))+1), COLUMNS($C$2:C2))),"")
This works in my sheet. Enter the formula with ctrl+shift+enter if you don't work with Office365 or Excel 2021.
byohojcu
Oct 27, 2022Copper Contributor
Amazing, thank you! I am slowly starting to better understand the numerical values behind the formulas, so multiplying by the other value was so new to me. Solved -- so grateful for your help!