In sheet A I have this data:
| A | B | |
|---|---|---|
| 1 | Customer | Id |
| 2 | Alice | 012 |
| 3 | Bob | 024 |
| 4 | Charlie | 087 |
And in sheet B I have the conditions for the formatting:
| A | B | |
|---|---|---|
| 1 | Red | Blue |
| 2 | 024 | 012 |
| 3 | 087 |
Is there a way to conditional formatting sheet A with the conditions in sheet B? I try using this custom formula:
=countif('B'!A:A, $B2) > 0But it doesn't accept the formula. I need to use it with Google Spreadsheet, but solution for any spreadsheet software is fine.