Avoiding Duplicates

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I would like to apply Data Validation to entries in a cell to prevent
duplicates, but I need the facility to enter a "valid duplicate" eg When
entering a surname that has been used before a warning is returned but this
can be ignored if entry is valid.
 
Hi,

say your area is A1 to C20. Select it go to Data Validation and enter.

=COUNTIF($A$1:$C$20,A1)=1

VBA Noob
 
Use a formula of

=COUNTIF($A$2:$A$209,A2)>1

where A2 is the DV cell, and on the Error Alerttab of DV, set the error
style type to Warning

--

HTH

Bob Phillips

(replace xxxx in the email address with gmail if mailing direct)
 
Sorry, should be = 1

--

HTH

Bob Phillips

(replace xxxx in the email address with gmail if mailing direct)
 
Thanks Had done formula correct but not altered Error Alert tab works fine
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top