how to apply unique constraint in excel column

B

Basit

Hi Tyro,
Unique mean that every value in the specified excel column should be
unique. like we do in the databases.
 
M

Max

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
 
B

Basit

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
 
Top