Dup entry two colums

  • Thread starter Thread starter pgarcia
  • Start date Start date
P

pgarcia

Hello all,
I have two colums, one hads check number and the other has dollar amounts.
How can I find dup by first look at the check number then by dollar amount?
 
The easiest way is to concatenate the two fields together in a new column.
Then you can use a simple count function to indicate how many of each item
that you have. Do a filter excluding 1 and you have all of your duplicates...
 
Hi,

Assuming your data is in A1:B100
put this in C1 and drag down

=SUMPRODUCT(($A$1:$A$100=A1)*($B$1:$B$100=B1))
adjust the ranges to suit

Any return greater than 1 will be a duplicate.

HTH
Martin
 

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

Back
Top