Hi,
I have a 2 column spreadsheet with numerical data in each column.
I need to compare columns and note which numbers are in both columns
(preferably in a third column)
example:
I have this...
col A col B
1001855 1001855
1001855 1001866
1001866 1001877
1001866 1001888
1001877 1001899
I need this....
col A col B col C
1001855 1001855 X
1001855 1001866 X
1001866 1001877 X
1001866 1001888
1001877 1001899
A has over 14,000 lines and B has over 10,000
either may have duplicates.
Suggestions?
Thanks
Max
Trevor Shuttleworth - 28 Jun 2007 05:41 GMT
Max
One way:
=IF(COUNTIF(A:A,$B1)>0,"X","") and drag down the column
Regards
Trevor
> Hi,
>
[quoted text clipped - 28 lines]
> Thanks
> Max
T. Valko - 28 Jun 2007 05:52 GMT
Enter this formula in C1 and copy down to the end of data in column B:
=IF(ISNUMBER(MATCH(B1,A:A,0)),"x","")
Hint: for fast copying of the formula double click the fill handle (that
little "square" on the bottom right of the selected cell). Double clicking
the fill handle will copy the formula down the column until it reaches an
empty cell in column B.
Biff
> Hi,
>
[quoted text clipped - 28 lines]
> Thanks
> Max
Max - 28 Jun 2007 15:16 GMT
Very interesting.
When I used Biff's formula not all of the common data was found.
When I used Trevor's formula all of the common data appears to have been
found.
Thank you both for your assistance.
Regards
Max
T. Valko - 28 Jun 2007 19:53 GMT
Hmmm...
At the most basic level, both formulas are essentially the same. The MATCH
formula is faster to calculate.
Biff
> Very interesting.
> When I used Biff's formula not all of the common data was found.
[quoted text clipped - 4 lines]
> Regards
> Max
Dave Peterson - 28 Jun 2007 20:49 GMT
Maybe there were "numbers" that were really text???
=match() wouldn't find a match, but =countif() would.
> Hmmm...
>
[quoted text clipped - 11 lines]
> > Regards
> > Max

Signature
Dave Peterson
T. Valko - 28 Jun 2007 21:01 GMT
Yes, I was just getting ready to explain that.
Biff
> Maybe there were "numbers" that were really text???
>
[quoted text clipped - 17 lines]
>> > Regards
>> > Max
Dave Peterson - 28 Jun 2007 21:06 GMT
Oh, sure.
I get one worksheet function question right and you want to take it away from
me!
<vbg>
> Yes, I was just getting ready to explain that.
>
[quoted text clipped - 25 lines]
> >
> > Dave Peterson

Signature
Dave Peterson
T. Valko - 28 Jun 2007 21:48 GMT
I logged in to CDO and voted for your reply:
http://img503.imageshack.us/img503/7329/goodanswerdavevs2.jpg
Don't know why it didn't give you the green checkmark!
Biff
> Oh, sure.
>
[quoted text clipped - 33 lines]
>> >
>> > Dave Peterson
Dave Peterson - 28 Jun 2007 22:01 GMT
1 out of 1 found it useful! That's close to 100%.
(You have wayyyyyyyy too much time on your hands!)
> I logged in to CDO and voted for your reply:
>
[quoted text clipped - 45 lines]
> >
> > Dave Peterson

Signature
Dave Peterson
T. Valko - 28 Jun 2007 22:22 GMT
> (You have wayyyyyyyy too much time on your hands!)
Yes. Yes I do, but, it looks like you have twice as much as me!
http://img525.imageshack.us/img525/6752/freetimetn3.jpg
I need a vacation!
Biff
>1 out of 1 found it useful! That's close to 100%.
>
[quoted text clipped - 52 lines]
>> >
>> > Dave Peterson
Dave Peterson - 28 Jun 2007 23:19 GMT
You win!
> > (You have wayyyyyyyy too much time on your hands!)
>
[quoted text clipped - 66 lines]
> >
> > Dave Peterson

Signature
Dave Peterson
Debra Dalgleish - 29 Jun 2007 01:18 GMT
Your lack of vacation is affecting your math skills!
Dave has 2.71 times as much free time as you. <g>
> You win!
>
[quoted text clipped - 56 lines]
>>>>>>>>>Regards
>>>>>>>>>Max

Signature
Debra Dalgleish
Contextures
http://www.contextures.com/tiptech.html
Dave Peterson - 29 Jun 2007 01:23 GMT
And your vacation to the Bahamas, er, back porch is going well, I hope????
> Your lack of vacation is affecting your math skills!
> Dave has 2.71 times as much free time as you. <g>
[quoted text clipped - 64 lines]
> Contextures
> http://www.contextures.com/tiptech.html

Signature
Dave Peterson
Debra Dalgleish - 29 Jun 2007 01:28 GMT
Well, my math skills are improving!
Just don't ask about the book.
> And your vacation to the Bahamas, er, back porch is going well, I hope????
>
[quoted text clipped - 66 lines]
>>Contextures
>>http://www.contextures.com/tiptech.html

Signature
Debra Dalgleish
Contextures
http://www.contextures.com/tiptech.html
T. Valko - 29 Jun 2007 02:21 GMT
>Your lack of vacation is affecting your math skills!
That's not all it's affecting!
Biff
> Your lack of vacation is affecting your math skills!
> Dave has 2.71 times as much free time as you. <g>
[quoted text clipped - 59 lines]
>>>>>>>>>>Regards
>>>>>>>>>>Max
Pete_UK - 28 Jun 2007 23:38 GMT
Hi Biff,
did you compile that table yourself?
Pete
> > (You have wayyyyyyyy too much time on your hands!)
>
[quoted text clipped - 68 lines]
>
> - Show quoted text -
T. Valko - 29 Jun 2007 00:08 GMT
No. Debra Dalgleish keeps stats:
http://contextures.com/xlngstats.html
Biff
> Hi Biff,
>
[quoted text clipped - 75 lines]
>>
>> - Show quoted text -
Dave Peterson - 29 Jun 2007 01:09 GMT
It looks like it comes from Debra Dalgleish's site:
http://contextures.com/xlngstats.html
> Hi Biff,
>
[quoted text clipped - 74 lines]
> >
> > - Show quoted text -

Signature
Dave Peterson
Max - 29 Jun 2007 05:48 GMT
> Don't know why it didn't give you the green checkmark!
Think only* original posters can "give" the greens
*perhaps also MVPs if they choose to mark the responses in CDO

Signature
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
T. Valko - 29 Jun 2007 06:16 GMT
Ah, that makes sense. Thanks, Max.
Biff
>> Don't know why it didn't give you the green checkmark!
> Think only* original posters can "give" the greens
> *perhaps also MVPs if they choose to mark the responses in CDO
Max - 29 Jun 2007 08:18 GMT
welcome, Biff.

Signature
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
> Ah, that makes sense. Thanks, Max.
>
> Biff