Reputation: 352
Dear All I want to Eliminate the possibility of entering a Duplicate item in a range. I used =COUNTIF($C$3:$C$151,C3)<=1
in Excel (office 2013) in Custom Data Validation. Below is the Error I get. I am not able to figure it out. Please give your input.
Upvotes: 0
Views: 134
Reputation: 7107
=countif(range, criteria)
=countif($C$1:$C$151, "<=1") 'better formula
Upvotes: 1