Forum Discussion
paul_schulze
Apr 25, 2024Copper Contributor
Conditional Colour Formatting for cells in a coloum depending on match in another sheet
Hello, I am looking for advice on how to conditionally colour format multiple cells in a colomn depending on if they match with entries in another sheet. I have two sheets where tags have bee...
- Apr 25, 2024
Like this:
The rules are of type 'Use a formula to determine which cells to format', with formulas
=ISNUMBER(MATCH(A3, Sheet1!A:A, 0))
for blue, and
=ISNUMBER(MATCH(A3, Sheet2!A:A, 0))
for green. Replace Sheet1 and Sheet2 with the actual names of those sheets. If the names contain spaces or punctuation, enclose them in single quotes: 'Sheet 1'.
HansVogelaar
Apr 25, 2024MVP
Like this:
The rules are of type 'Use a formula to determine which cells to format', with formulas
=ISNUMBER(MATCH(A3, Sheet1!A:A, 0))
for blue, and
=ISNUMBER(MATCH(A3, Sheet2!A:A, 0))
for green. Replace Sheet1 and Sheet2 with the actual names of those sheets. If the names contain spaces or punctuation, enclose them in single quotes: 'Sheet 1'.
- paul_schulzeApr 25, 2024Copper ContributorThanks, Hans! This works perfectly well.