how do i set up if cell content repeat, warn given

F

Fred Smith

Typically, you use Countif. If data is entered in a1, and you don't want it
to be a duplicate of anything in column B, use:

=if(countif(b:b,a1)>0,"Duplicate","OK")

Regards,
Fred.
 
Top