Forum Discussion
Salim2906
Jul 05, 2020Copper Contributor
Multiple Supersessions to One Description
Hello Help needed in writing a formula that will give me the Description (column A) if I type any variation of Part # and its Supersessions (column B-F) Thanks in advance. Sal
SergeiBaklan
Jul 05, 2020Diamond Contributor
If A3:F9 is name as Range, formula here
could be
=IFERROR(INDEX(Range,INDEX(SUMPRODUCT((Range=H4)*ROW(Range))-ROW(Range)+1,1),1),"no such")
- Salim2906Jul 05, 2020Copper Contributor
SergeiBaklan Thank you so much for the quick response. This seems to solve my problem.
- SergeiBaklanJul 05, 2020Diamond Contributor
You are welcome, glad to help
- TheAntonyJul 06, 2020Iron Contributor
Purely out of curiosity to see if it can be done, I took a shot at a formula to find any text that's part of the table and return a list of outcomes.
=LET(sResult,SEARCH(H3,$B$3:$F$8)/SEARCH(H3,$B$3:$F$8)*SEQUENCE(COUNTA($A$3:$A$8)), TRANSPOSE( INDEX($A$3:$A$8, UNIQUE( AGGREGATE(15,6,sResult,SEQUENCE(COUNT(sResult))) ) ) ) )