how to apply unique constraint in excel column

  • Thread starter Thread starter Basit
  • Start date Start date
Hi Tyro,
Unique mean that every value in the specified excel column should be
unique. like we do in the databases.
 
Basit said:
.. Unique mean that every value in the specified excel column should be
unique. like we do in the databases.

If you mean, to ensure no duplicates in an input col ..

Assume that inputs will be done in A1 down
Select col A, click Data > Validation,
Allow: Custom
Formula: =COUNTIF(A:A,A1)<2
Click OK

---
 
Thanks a lot Max it worked.

Max said:
If you mean, to ensure no duplicates in an input col ..

Assume that inputs will be done in A1 down
Select col A, click Data > Validation,
Allow: Custom
Formula: =COUNTIF(A:A,A1)<2
Click OK

---
 
Back
Top