stylencia18

New Member
Joined
Aug 14, 2017
Messages
31
Good afternoon:

I have 10,000 rows of data and I want to search for duplicate rows but I don't know how to. I do NOT want to delete duplicates, just highlight them.

Sample spreadsheet:




Date
Claim Number
Patient Name
Code
Patient ID Number
Date Bill Submitted
Amount Billed
Amount Paid
10/1/2014
156161

John Doe
99213
A615651
10/5/2014
$700.00
$500.00
10/8/2015
165511
Sam Jones
99214
B625663
10/15/2015
$800.00
$200.00
10/1/2014
156161
John Doe
99213
A615651
10/5/2014
$700.00
$500.00

<tbody>
</tbody>

We can easily see that the 1stand 3rd rows are duplicates. How do I find duplicates in 10,000 rows of data?

In order to be a duplicate, the following column names must match exactly: Date; Code; Patient ID Number


Thank you!!!

<tbody>
</tbody>
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
You Can use Conditional Formatting to find duplicate values.

Go to Home-->Conditional Formatting-->Highlight Cell Rules-->Duplicate Values
 
Upvote 0
Not a whizz with VBA so there will no doubt be a better solution other than formula.
My quick workaround (since its based on 3 columns) assuming your table starts in cell A1; would be introduce a new column and use the formula in cell H2

=CONCATENATE(A2,D2,E2)

Then paste it down, and use what was suggested by ganeshpoojary05, you can also then filter by colours or even remove duplicates based on cell column H.

Again, there will be a much quicker way that the VBA gurus will know.
 
Upvote 0

Forum statistics

Threads
1,213,560
Messages
6,114,309
Members
448,564
Latest member
ED38

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top