Manny Wilkins
New Member
- Joined
- Aug 31, 2020
- Messages
- 1
- Office Version
- 365
- Platform
- Windows
I want to return the relative name from column A in cell B16 if the data set = "ORS". I wrote the following formula and it works fine.
=@IF(COUNTIF($B$6:$D$13,"ORS")>1,"Check Call Schedule",INDEX($A$6:$A$13,SUMPRODUCT(($B$6:$D$13="ORS")*(ROW($A$6:$A$13)-ROW($A$5))),))
This Issue:
However, sometimes the user will add other text to this designation such as ORS/GOP. I need the formula find the text ORS in any cell in the array, even if it is combined with other designations.
=@IF(COUNTIF($B$6:$D$13,"ORS")>1,"Check Call Schedule",INDEX($A$6:$A$13,SUMPRODUCT(($B$6:$D$13="ORS")*(ROW($A$6:$A$13)-ROW($A$5))),))
This Issue:
However, sometimes the user will add other text to this designation such as ORS/GOP. I need the formula find the text ORS in any cell in the array, even if it is combined with other designations.