Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 355
Default Compare one file to another

I have 2 file which are similar, I want to find all the records from one that
exsist in the other.

EX John Doe is in both files, how can I tag them, or merge them or something.
Even just tagging them I could remove the ones that don't get tagged
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default Compare one file to another

Chip Pearson has lots of techniques for working with duplicates:
http://www.cpearson.com/excel/Duplicates.aspx

Sandy wrote:

I have 2 file which are similar, I want to find all the records from one that
exsist in the other.

EX John Doe is in both files, how can I tag them, or merge them or something.
Even just tagging them I could remove the ones that don't get tagged


--

Dave Peterson
  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 355
Default Compare one file to another

that seems to be for a single list of data, I need to compare the same list
in 2 different file s

"Dave Peterson" wrote:

Chip Pearson has lots of techniques for working with duplicates:
http://www.cpearson.com/excel/Duplicates.aspx

Sandy wrote:

I have 2 file which are similar, I want to find all the records from one that
exsist in the other.

EX John Doe is in both files, how can I tag them, or merge them or something.
Even just tagging them I could remove the ones that don't get tagged


--

Dave Peterson

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default Compare one file to another

You can use a couple of formulas in helper columns:

=isnumber(match(a1,'sheet2'!a:a,0))
and drag down

Change Sheet2 to the other worksheet name.

If it's in different workbooks:
=isnumber(match(a1,'[workbook name here.xls]Sheet1'!$A:$A,0))






Sandy wrote:

that seems to be for a single list of data, I need to compare the same list
in 2 different file s

"Dave Peterson" wrote:

Chip Pearson has lots of techniques for working with duplicates:
http://www.cpearson.com/excel/Duplicates.aspx

Sandy wrote:

I have 2 file which are similar, I want to find all the records from one that
exsist in the other.

EX John Doe is in both files, how can I tag them, or merge them or something.
Even just tagging them I could remove the ones that don't get tagged


--

Dave Peterson


--

Dave Peterson
  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 355
Default Compare one file to another

I tried this, but I must be doing something wrong, Not sure what the !$O2:$O2,0
is suppose to be or do
M2 is the cell I am comparing in this file to O2 in the other file, I would
expect it to return a true since they do match


=ISTEXT(MATCH(M2,'[File 1.xls]_36___Buckeye_Council'!$O2:$O2,0))

"Dave Peterson" wrote:

You can use a couple of formulas in helper columns:

=isnumber(match(a1,'sheet2'!a:a,0))
and drag down

Change Sheet2 to the other worksheet name.

If it's in different workbooks:
=isnumber(match(a1,'[workbook name here.xls]Sheet1'!$A:$A,0))






Sandy wrote:

that seems to be for a single list of data, I need to compare the same list
in 2 different file s

"Dave Peterson" wrote:

Chip Pearson has lots of techniques for working with duplicates:
http://www.cpearson.com/excel/Duplicates.aspx

Sandy wrote:

I have 2 file which are similar, I want to find all the records from one that
exsist in the other.

EX John Doe is in both files, how can I tag them, or merge them or something.
Even just tagging them I could remove the ones that don't get tagged

--

Dave Peterson


--

Dave Peterson



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default Compare one file to another

Your formula is using =istext(). I suggested =isnumber().

And you're comparing M2 to the single cell O2. I would think you would want to
compare the value in M2 to the entire O column:

=ISnumber(MATCH(M2,'[File 1.xls]_36___Buckeye_Council'!$O:$O,0))

If you really wanted to compare a single cell to a single cell, just do a simple
comparison:

=m2='[File 1.xls]_36___Buckeye_Council'!$O2



Sandy wrote:

I tried this, but I must be doing something wrong, Not sure what the !$O2:$O2,0
is suppose to be or do
M2 is the cell I am comparing in this file to O2 in the other file, I would
expect it to return a true since they do match

=ISTEXT(MATCH(M2,'[File 1.xls]_36___Buckeye_Council'!$O2:$O2,0))

"Dave Peterson" wrote:

You can use a couple of formulas in helper columns:

=isnumber(match(a1,'sheet2'!a:a,0))
and drag down

Change Sheet2 to the other worksheet name.

If it's in different workbooks:
=isnumber(match(a1,'[workbook name here.xls]Sheet1'!$A:$A,0))






Sandy wrote:

that seems to be for a single list of data, I need to compare the same list
in 2 different file s

"Dave Peterson" wrote:

Chip Pearson has lots of techniques for working with duplicates:
http://www.cpearson.com/excel/Duplicates.aspx

Sandy wrote:

I have 2 file which are similar, I want to find all the records from one that
exsist in the other.

EX John Doe is in both files, how can I tag them, or merge them or something.
Even just tagging them I could remove the ones that don't get tagged

--

Dave Peterson


--

Dave Peterson


--

Dave Peterson
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
Compare Excel file size Spuds Glorious Spuds[_2_] Excel Discussion (Misc queries) 1 November 20th 08 03:21 PM
File Compare mizzrizz Excel Discussion (Misc queries) 2 June 17th 06 06:07 AM
How to file compare Excel worksheets wrdennig New Users to Excel 3 April 21st 06 02:28 AM
Compare cells and Create a new File sp123 Excel Worksheet Functions 0 February 3rd 06 06:58 PM
How do I do a file compare of one excel spreadsheet to another? stephen Excel Worksheet Functions 1 April 19th 05 10:20 PM


All times are GMT +1. The time now is 08:56 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"