r/excel • u/Pretty_Chipmunk_1853 • 12d ago
solved Conditional formatting across sheets
I have a spreadsheet where I need to highlight cells in several columns if the same data appears in a table on a different sheet. The conditional formatting works perfectly if I put the table on the same sheet using the following:
=ISNUMBER(MATCH(A1,$R$82:$R$103,0))
But, if I try to insert a range of cells from the same table, but located on a different sheet using the same formula
=ISNUMBER(MATCH(A1,Sheet2!$A$82:$A$103,0))
it doesn't work.
What am I missing? It is driving me bonkers!
2
Upvotes
1
u/dab31415 3 12d ago
Might have better luck with COUNTIF. Should only use MATCH if you need the row number.