identify duplicate data in excel spreadsheet

G

Guest

Please help me to identify duplicate data from excel spreadsheet.
I have to enter series of five digit numbers in spreadsheet as per work
completion.....and some time it so happens that the same number is entered
twice......I want that the excel should prompt that the number is already
eneterd.
For example:
35851
35933
36009
35851 (out here this number is duplicate as the same is already entered
above and I want excel should prompt duplicate here)
 
S

ScottO

Assuming that the 2nd entry in your list is at A3,
put this formula in B3 and copy down to suit.

=IF(ISNA(MATCH($A3,$A$2:$A2,0)),"","Duplicate Number!!!!")

Rgds,
ScottO

message | Please help me to identify duplicate data from excel spreadsheet.
| I have to enter series of five digit numbers in spreadsheet as per
work
| completion.....and some time it so happens that the same number is
entered
| twice......I want that the excel should prompt that the number is
already
| eneterd.
| For example:
| 35851
| 35933
| 36009
| 35851 (out here this number is duplicate as the same is already
entered
| above and I want excel should prompt duplicate here)
|
 

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

Top