Reputation: 1831
In Google spreadsheet, we have column A which is an input list. Other columns from B to G are filled list. Filled list cells should highlight when cell value matches with input list. The problem is I can not use MATCH as matching is with the range not column or row.
Upvotes: 0
Views: 3347
Reputation: 7264
You definetely can use Match. But you need to use it with ISERROR & NOT formula.
You need apply the following Conditional formatting to the entire range starting from B1.
=NOT(ISERROR(MATCH(B1,$A:$A,0)))
Note: if you copy the formula exactly, you need to apply it to the Range starting from B! For it work.
Upvotes: 2