Prevent Duplicate Data Entry using Cell Validations

Posted on October 26th, 2009 in Excel Howtos - 12 comments

We all know that data validation is a very useful feature in Excel. You can use data validation to create a drop-down list in a cell and limit the values user can enter. But, do you know that you can use data validation in a multitude of ways to prevent users from entering wrong data?

Here is a practical application: Prevent users from entering duplicate values in a range of cells.

For eg. you are making an invoice. Wouldn’t it be cool if Excel prompted you when you enter a duplicate line item so that increase the item quantity instead of repeating it.

Here is a 3 step tutorial to do just that.

Step 1: Identify the range of cells where you want only unique values to be entered

This is simple. All you have to do is find the range where you want to control the user input. Lets say the range is B4:B11

Step 2: Set up Data Validation to prevent duplicate entries

Select the range (B4:B11) and go to data validation (Excel 2007: Data Ribbon > Data Validation, or press ALT+AVV)

Using Data Validation to prevent DuplicatesNow, specify the validation type as “Custom”, this will allow us to use formulas to check for valid data. In our case, we need check if a particular entry is duplicated in the range B4:B11. This can be easily done using COUNTIF formula [learn COUNTIF Formula in plain English].

Go to the formula field and type the countif formula like this: =COUNTIF($B$4:$B$11,B4)<=1

Also, you can set up the “Error Alert” so that you can show a custom message when a duplicate value is typed, like “You have already added that product” message.

Data Validation - Error message

Once you set up error message, it will show up like this:

Data validation to prevent duplicates - error message example
Step 3: Sit back and Relax

The third step is all too familiar. Now that you have prevented duplicate entries in your spreadsheets you can sit back and relax. May be read a few more spreadcheats.

More kickass stuff on data validation (and working with duplicates) using excel

There are a ton of useful articles on the site related to data validation and working with duplicates using excel. Here is a sample. Get started and learn something useful today.

This post is part of our spreadcheats series (yes, the series is still going after one year :P )

| More
Excel School - Online Excel Training Program

Comments
Jair October 26, 2009

Hi Chandoo, I need you help in the following problem.
I’m trying to get a direccion from a found result. With this dirreccion I will want the before cell value. For example, If result of a find is 38 localized in cell $C$2, I need to get previus value (cell $B$2 ), maybe Andrés.

Do you know some way to do that?

Thank you for you help.

Lincoln October 27, 2009

Hi Chandoo

Thanks for this. One thing though: In my pre-2007 version of Excel, the COUNTIF function doesn’t recognise a semicolon (;), but requires a comma.

Is the semicolon an Excel 2007 thing?

Chandoo October 27, 2009

Jair… I am not sure I understand what you want. what do you mean by Dirreccion?

@Lincoln: I am sorry, often I forget that I am using European version of excel where the delimiter is ; instead of ,. I have corrected the formula now.

subbu October 27, 2009

Thanks for this nice tip, i used to do a find all after filling every new items which was cumbersome.

Do you know a way to extend this validation search to other tabs/sheets ?

Jair October 30, 2009

Thanks for you attention. I’m trying to get of value continue from a found value. Let me show a example:

Name Years
John 35
Maria 28
Teresa 32

If I search the max years, the result is 35, but I need that result to be John. Do you know how I can do it?

Chandoo November 1, 2009

@Subbu.. you can easily extend the validation to other sheets by pasting the data validations. See the latest article here: http://chandoo.org/wp/2009/10/28/copy-data-validations/

@Jair.. you can use the large() or small() formulas to do this. for eg. =index(A1:A3,large(B1:B3,1)) will get you the name of the person with highest “years”. More help here: http://chandoo.org/excel-formulas/large.html

Jair November 6, 2009

Hi, I don’t know if I’m using bad the formula or its performance is diferent for my Office version. Large() formula return the value in the cell, in my example 35. The index() formula use a range, row and column. I’m using the large() as number of row, and it is bad because into the range don’t have row 35. This is my perception. What do you think?

Jair November 6, 2009
Chad November 12, 2009

Hello,
I am trying to attempt data validation in Excel Mobile, but the DV tool isnt available. I want to prevent duplicates is all, any advice on acheiving this in Excel Mobile? Thanks..

Chandoo November 13, 2009

@Jair… my french aint that good. it starts at “merci” and ends at “beau coup”.

Anyhow, you need to merge the large with vlookup to do this. I am not sure if you have solved the problem. Otherwise let me know with details and I can write the formula in comments.

@Chad… I have never used excel mobile, so I have no idea. May be they have not implemented data validations in excel mobile.

Any excel mobile users out there?

Jair November 13, 2009

Hi Chandoo, the proposed solution by JlD is interesting. He created a macro to get values when the matrix is not one dimensional, how on my problem. This fuction for me.
I would like to share you my work, how can I upload?

Chandoo November 30, 2009

@Jair.. sorry for such a delayed reply.. you can upload the files to skydrive and link them here. Or you can email them to me at chandoo.d @ gmail.com and I will upload them somewhere. But it could take forever if you email files to me as I am a bit lazy.

RSS feed for comments on this post. TrackBack URI

Leave a comment

   Name (required)

   E-mail (required, never displayed)

   URL


If you have a question, please ask in the forums

Recommended Excel, Charting, VBA books