Duplicate Company Check by date

niladri20052006

Board Regular
Joined
Dec 3, 2010
Messages
121
Hi All,

Here I am facing one challenge. I have a list of companies and there is near about 40,000 data. I have only two columns; one is Company names and other one is Sent Date

Now the problem is how can i judge the following?

  • Have I sent any data for second times by date wise?
  • If I sent any company for second times then how will I get the exact two dates?
  • I want to work only for duplicate companies not for unique companies.

For example if i have the company names like

Cisco 06-25-11
Cisco 07-21-11

Like the above I do not how many duplicate companies are there in list and if I sent any data for the second time then how will I get it?

Please help!! I am in a tough situation...

I think I am capable enough to make you understandable what I exactly need..

Thanks in advance.

Niladri
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
Hi Nilardi,
You can use this formula to check if the company is in your column A more than one:

=COUNTIF($A$2:$A$40000,A2)

or
=SUMPRODUCT(--($A$2:$A$40000=A2),--($B$2:$B$40000=B2))

copy down,filter by Column C


this to see if you got company and the same date more than once
 
Upvote 0
Hi Mike,

Thanks for your reply.

I need the second formula. But it is not working. I think it should be SUMPRODUCT(--(A2=$A$2:$A$39479),--(B2=$B$2:$B$39479))

However it is a too much time as there are 40,000+ data.

Is there any better way to solve that?

Thanks in advance
 
Upvote 0
Code:
I need the second formula. But it is not working. I think it should be SUMPRODUCT(--(A2=$A$2:$A$39479),--(B2=$B$2:$B$39479))

If taht works for you that's fine.


Could you post a bigger sample of your data?
 
Upvote 0

Forum statistics

Threads
1,224,521
Messages
6,179,291
Members
452,902
Latest member
Knuddeluff

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