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
5 Replies
Sort By
- SergeiBaklanDiamond 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")
- Salim2906Copper Contributor
SergeiBaklan Thank you so much for the quick response. This seems to solve my problem.
- SergeiBaklanDiamond Contributor
You are welcome, glad to help