Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 347
Default compare data in column A with column B to find duplicates

I was given a formula that did not work before and need to try this again.
I have two lists which I have put in one worksheet, column A is 797 rows
long and column B is 319 rows long. I need to isolate the duplicates in these
two columns so I can remove them and see what was not duplicated (all of the
items in column B will be duplicated in column A)
The lists are labels which consist of letters and numbers some have spaces
and other have signs like - , ( , ).
The lists are of finished items and un-finished items, the finished items
will be duplicated, so by removing those lables I will be left with the
un-finished items.
Any help with be appreciated.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,856
Default compare data in column A with column B to find duplicates

Put this in C1:

=IF(ISNA(MATCH(A1:B:B,0)),"","duplicate")

and copy down to row 797. It will tell you which of the entries in
column A are duplicated in column B.

Hope this helps.

Pete

On Feb 5, 3:32*pm, George wrote:
I was given a formula that did not work before and need to try this again..
I have two lists which I have put in one worksheet, column A is 797 rows
long and column B is 319 rows long. I need to isolate the duplicates in these
two columns so I can remove them and see what was not duplicated (all of the
items in column B will be duplicated in column A)
The lists are labels which consist of letters and numbers some have spaces
and other have signs like *- , ( , ).
The lists are of finished items and un-finished items, the finished items
will be duplicated, so by removing those lables I will be left with the
un-finished items.
Any help with be appreciated.


  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,389
Default compare data in column A with column B to find duplicates

Typo. Should be:
=IF(ISNA(MATCH(A1,B:B,0)),"","duplicate")

Regards,
Fred

"Pete_UK" wrote in message
...
Put this in C1:

=IF(ISNA(MATCH(A1:B:B,0)),"","duplicate")

and copy down to row 797. It will tell you which of the entries in
column A are duplicated in column B.

Hope this helps.

Pete

On Feb 5, 3:32 pm, George wrote:
I was given a formula that did not work before and need to try this again.
I have two lists which I have put in one worksheet, column A is 797 rows
long and column B is 319 rows long. I need to isolate the duplicates in
these
two columns so I can remove them and see what was not duplicated (all of
the
items in column B will be duplicated in column A)
The lists are labels which consist of letters and numbers some have spaces
and other have signs like - , ( , ).
The lists are of finished items and un-finished items, the finished items
will be duplicated, so by removing those lables I will be left with the
un-finished items.
Any help with be appreciated.


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,856
Default compare data in column A with column B to find duplicates

Thanks for pointing that out, Fred.

Pete

On Feb 5, 3:55*pm, "Fred Smith" wrote:
Typo. Should be:
=IF(ISNA(MATCH(A1,B:B,0)),"","duplicate")

Regards,
Fred

"Pete_UK" wrote in message

...
Put this in C1:

=IF(ISNA(MATCH(A1:B:B,0)),"","duplicate")

and copy down to row 797. It will tell you which of the entries in
column A are duplicated in column B.

Hope this helps.

Pete

On Feb 5, 3:32 pm, George wrote:



I was given a formula that did not work before and need to try this again.
I have two lists which I have put in one worksheet, column A is 797 rows
long and column B is 319 rows long. I need to isolate the duplicates in
these
two columns so I can remove them and see what was not duplicated (all of
the
items in column B will be duplicated in column A)
The lists are labels which consist of letters and numbers some have spaces
and other have signs like - , ( , ).
The lists are of finished items and un-finished items, the finished items
will be duplicated, so by removing those lables I will be left with the
un-finished items.
Any help with be appreciated.- Hide quoted text -


- Show quoted text -


  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 347
Default compare data in column A with column B to find duplicates

I have put the corrected formula in C1 and copied it down to the end, now
what? In the C1 column it now says duplicate in evry row, do I need to hit
the 'enter' key or do something else? This may be a problem, the sheet is in
a CSV format, will that effect it?

"Fred Smith" wrote:

Typo. Should be:
=IF(ISNA(MATCH(A1,B:B,0)),"","duplicate")

Regards,
Fred

"Pete_UK" wrote in message
...
Put this in C1:

=IF(ISNA(MATCH(A1:B:B,0)),"","duplicate")

and copy down to row 797. It will tell you which of the entries in
column A are duplicated in column B.

Hope this helps.

Pete

On Feb 5, 3:32 pm, George wrote:
I was given a formula that did not work before and need to try this again.
I have two lists which I have put in one worksheet, column A is 797 rows
long and column B is 319 rows long. I need to isolate the duplicates in
these
two columns so I can remove them and see what was not duplicated (all of
the
items in column B will be duplicated in column A)
The lists are labels which consist of letters and numbers some have spaces
and other have signs like - , ( , ).
The lists are of finished items and un-finished items, the finished items
will be duplicated, so by removing those lables I will be left with the
un-finished items.
Any help with be appreciated.





  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,389
Default compare data in column A with column B to find duplicates

No, you don't have to hit the 'enter' key. No, CSV format should have no
effect on the results. The results you are getting mean that each entry in
column B exists in column A, which is what Pete thought you wanted to test
for.

If you are looking for duplicates *within* a column, change the formula to:
=IF(ISNA(MATCH(A1,A:A,0)),"","duplicate") for column A, and
=IF(ISNA(MATCH(B1,B:B,0)),"","duplicate") for column B.

Regards,
Fred.


"George" wrote in message
...
I have put the corrected formula in C1 and copied it down to the end, now
what? In the C1 column it now says duplicate in evry row, do I need to hit
the 'enter' key or do something else? This may be a problem, the sheet is
in
a CSV format, will that effect it?

"Fred Smith" wrote:

Typo. Should be:
=IF(ISNA(MATCH(A1,B:B,0)),"","duplicate")

Regards,
Fred

"Pete_UK" wrote in message
...
Put this in C1:

=IF(ISNA(MATCH(A1:B:B,0)),"","duplicate")

and copy down to row 797. It will tell you which of the entries in
column A are duplicated in column B.

Hope this helps.

Pete

On Feb 5, 3:32 pm, George wrote:
I was given a formula that did not work before and need to try this
again.
I have two lists which I have put in one worksheet, column A is 797
rows
long and column B is 319 rows long. I need to isolate the duplicates in
these
two columns so I can remove them and see what was not duplicated (all
of
the
items in column B will be duplicated in column A)
The lists are labels which consist of letters and numbers some have
spaces
and other have signs like - , ( , ).
The lists are of finished items and un-finished items, the finished
items
will be duplicated, so by removing those lables I will be left with the
un-finished items.
Any help with be appreciated.




  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,856
Default compare data in column A with column B to find duplicates

You said you needed "... to isolate the duplicates in these two
columns so I can remove them..."

You can apply autofilter to the column with the formula in, and choose
either "duplicate" from the filter pull down or "blanks", depending on
what you want to see. If you want to remove the duplicates then
highlight them with the filter applied and click on Edit | Delete Row,
then choose All from the filter pull-down to see what is left.

Hope this helps.

Pete

On Feb 6, 2:33*pm, George wrote:
I have put the corrected formula in C1 and copied it down to the end, now
what? In the C1 column it now says duplicate in evry row, do I need to hit
the 'enter' key or do something else? This may be a problem, the sheet is in
a CSV format, will that effect it?



"Fred Smith" wrote:
Typo. Should be:
=IF(ISNA(MATCH(A1,B:B,0)),"","duplicate")


Regards,
Fred


"Pete_UK" wrote in message
....
Put this in C1:


=IF(ISNA(MATCH(A1:B:B,0)),"","duplicate")


and copy down to row 797. It will tell you which of the entries in
column A are duplicated in column B.


Hope this helps.


Pete


On Feb 5, 3:32 pm, George wrote:
I was given a formula that did not work before and need to try this again.
I have two lists which I have put in one worksheet, column A is 797 rows
long and column B is 319 rows long. I need to isolate the duplicates in
these
two columns so I can remove them and see what was not duplicated (all of
the
items in column B will be duplicated in column A)
The lists are labels which consist of letters and numbers some have spaces
and other have signs like - , ( , ).
The lists are of finished items and un-finished items, the finished items
will be duplicated, so by removing those lables I will be left with the
un-finished items.
Any help with be appreciated.- Hide quoted text -


- Show quoted text -


  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,856
Default compare data in column A with column B to find duplicates

Please Note:

deleting the duplicates will also delete the names in column B, so you
might want to make sure you do this on a copy of the data so that you
can retrieve it if you need to.

Pete

On Feb 6, 3:49*pm, Pete_UK wrote:
You said you needed "... to isolate the duplicates in these two
columns so I can remove them..."

You can apply autofilter to the column with the formula in, and choose
either "duplicate" from the filter pull down or "blanks", depending on
what you want to see. If you want to remove the duplicates then
highlight them with the filter applied and click on Edit | Delete Row,
then choose All from the filter pull-down to see what is left.

Hope this helps.

Pete

On Feb 6, 2:33*pm, George wrote:



I have put the corrected formula in C1 and copied it down to the end, now
what? In the C1 column it now says duplicate in evry row, do I need to hit
the 'enter' key or do something else? This may be a problem, the sheet is in
a CSV format, will that effect it?


"Fred Smith" wrote:
Typo. Should be:
=IF(ISNA(MATCH(A1,B:B,0)),"","duplicate")


Regards,
Fred


"Pete_UK" wrote in message
....
Put this in C1:


=IF(ISNA(MATCH(A1:B:B,0)),"","duplicate")


and copy down to row 797. It will tell you which of the entries in
column A are duplicated in column B.


Hope this helps.


Pete


On Feb 5, 3:32 pm, George wrote:
I was given a formula that did not work before and need to try this again.
I have two lists which I have put in one worksheet, column A is 797 rows
long and column B is 319 rows long. I need to isolate the duplicates in
these
two columns so I can remove them and see what was not duplicated (all of
the
items in column B will be duplicated in column A)
The lists are labels which consist of letters and numbers some have spaces
and other have signs like - , ( , ).
The lists are of finished items and un-finished items, the finished items
will be duplicated, so by removing those lables I will be left with the
un-finished items.
Any help with be appreciated.- Hide quoted text -


- Show quoted text -- Hide quoted text -


- Show quoted text -


  #9   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,805
Default compare data in column A with column B to find duplicates

Looks like you just need to find out duplicates in Col A. If that is the case
then enter this in C1
=COUNTIF($A$1:A1,A1)

It will give you 1 against the value when it occurs for the first time, 2
for the second time and so on... You can filter on 1 to delete duplicates.



"George" wrote:

I was given a formula that did not work before and need to try this again.
I have two lists which I have put in one worksheet, column A is 797 rows
long and column B is 319 rows long. I need to isolate the duplicates in these
two columns so I can remove them and see what was not duplicated (all of the
items in column B will be duplicated in column A)
The lists are labels which consist of letters and numbers some have spaces
and other have signs like - , ( , ).
The lists are of finished items and un-finished items, the finished items
will be duplicated, so by removing those lables I will be left with the
un-finished items.
Any help with be appreciated.

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Maddening Dilemma - Compare each cell within column a to each cell in column b and find unique matches [email protected] Excel Worksheet Functions 66 May 1st 23 03:44 AM
Compare two columns and find the difference between the two column kpk Excel Discussion (Misc queries) 2 April 3rd 23 01:30 PM
How can I find duplicates in one column of an exel spreadsheet? Bill in Wichita Excel Worksheet Functions 7 September 25th 09 02:10 PM
How to find duplicates within same column Frank Beltre New Users to Excel 2 September 6th 07 09:12 PM
Compare data in two columns to find duplicates. Dan Excel Discussion (Misc queries) 2 October 5th 05 04:42 AM


All times are GMT +1. The time now is 02:39 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"