Reputation: 3
Above is the cell values I want to apply the condition too.
A solution that works is to create a new column using the transpose function for the row in Question is to use the cell = cell.
I dont want to add another column id rather just take that row and add condition based on the columns 1x1
Upvotes: 0
Views: 53
Reputation: 6418
You could INDEX the row to do this:
=INDEX($B$2:$I$2,ROW()-2)=J3
Note: you may need to adjust the number you substract depending on where your table starts on the sheet.
Upvotes: 1