ssalazar12
ssalazar12

Reputation: 21

Conditional formatting in google sheet not working for duplicates

I'm trying to add conditional formatting to highlight rows that have duplicate values. I followed direction from other questions/forums:

Format>Conditional formatting>

However, none of the rows with duplicate values are being highlighted.

https://docs.google.com/spreadsheets/d/13EKfWxkgAc6i3I3laVJTpKvHd5Z2cqDrS2H7fwu_8sQ/edit?usp=sharing

Table

Conditional Format Rule

Upvotes: 2

Views: 4621

Answers (4)

Agata Woj.
Agata Woj.

Reputation: 1

For me it didn't work either until I changed the comma "," for the semicolon ";" dividing the range from the criterion: =countif(C1:C149;C2)>1

Upvotes: 0

Emily
Emily

Reputation: 11

This answer is coming too late to help you as its been years. However I had the same problem and just figured it out. I found I couldn't have the full column as the first value inside the parenthesis. It needed to match the range I was applying the formula too. So in the case of your example it needs to be =COUNTIF(A1:A988,A1)>1

Upvotes: 1

M3P
M3P

Reputation: 19

Maybe you should try =COUNTIF(A:A;A1)>1

Upvotes: 0

Shiva
Shiva

Reputation: 348

Your formula is correct, probably you missed to put = initially, so your formula would be =COUNTIF(A:A,A1)>1

result1 formula1

Upvotes: 2

Related Questions