Hi, I have data that looks like the following
<tbody>
</tbody>
The results that I need to achieve are in RED.
Basically I need to list that header for any item that contains the word "Error"
this is what I have so far but it only list the first instance instead of all of the instances:
=IFERROR(INDEX($B$1:$AO$1,MATCH(TRUE,INDEX($B3:$AO3="ERROR",0),0)),"")
Help is greatly appreciated.
ITEM | SIZE | COLOR | PACKAGED | TINT | AGES | ACCESSORIES | WASHABLE | ERRORS |
54452 | LG | BLUE | ERROR | BLACK | ERROR | ERROR | YES | PACKAGED, AGES, ACCESSORIES |
64152 | SM | RED | YES | RED | ALL | YES | YES | |
12542 | ERROR | ERROR | YES | BLUE | 12&UP | YES | NO | SIZE, COLOR |
<tbody>
</tbody>
The results that I need to achieve are in RED.
Basically I need to list that header for any item that contains the word "Error"
this is what I have so far but it only list the first instance instead of all of the instances:
=IFERROR(INDEX($B$1:$AO$1,MATCH(TRUE,INDEX($B3:$AO3="ERROR",0),0)),"")
Help is greatly appreciated.