Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Ingeniero1
 
Posts: n/a
Default Compare two different size lists


(I searched, but the key words yield way too many non-related hits)

I have two lists, A10:B400 and C10:D300. All the sets of data in CD (a
name and a number respectively) are in AB, but AB, obviously, has more
sets of data than CD.

Is there a function, which I can enter in E10:E400, for example, that
will compare each value in A with _all_ the values in C, and if the A
value is not in C, it will write the missing value(s) in E (and F), in
the same row as the A 'source'?

What I trying to find are the sets of data in AB that are not in CD.

Please let me know if I didn't make my query clear enough...

Thanks
alex


--
Ingeniero1
------------------------------------------------------------------------
Ingeniero1's Profile: http://www.excelforum.com/member.php...fo&userid=4029
View this thread: http://www.excelforum.com/showthread...hreadid=466041

  #2   Report Post  
JE McGimpsey
 
Posts: n/a
Default

one way:

E10: =IF(COUNTIF(C:C,A10),"",A10)
F10: =IF(E10="","",B10)


In article ,
Ingeniero1
wrote:

(I searched, but the key words yield way too many non-related hits)

I have two lists, A10:B400 and C10:D300. All the sets of data in CD (a
name and a number respectively) are in AB, but AB, obviously, has more
sets of data than CD.

Is there a function, which I can enter in E10:E400, for example, that
will compare each value in A with _all_ the values in C, and if the A
value is not in C, it will write the missing value(s) in E (and F), in
the same row as the A 'source'?

What I trying to find are the sets of data in AB that are not in CD.

Please let me know if I didn't make my query clear enough...

Thanks
alex

  #3   Report Post  
Ingeniero1
 
Posts: n/a
Default


JE,

That works great!

I thought that I was well familiar with the 'COUNTIF' function, but had
never used it with this specific notation - {C:C,A10}, as in {E10:
=IF(COUNTIF(C:C,A10),"",A10)}

I can see what it does, but when you get a minute (or two) could you
briefly explain it?

Thanks X2

Alex


--
Ingeniero1
------------------------------------------------------------------------
Ingeniero1's Profile: http://www.excelforum.com/member.php...fo&userid=4029
View this thread: http://www.excelforum.com/showthread...hreadid=466041

  #4   Report Post  
JE McGimpsey
 
Posts: n/a
Default

The conditional:

COUNTIF(C:C,A10)

returns a positive number if the contents of cell A10 are found at least
once in column C ("C:C" is equivalent to "C1:C65536"), 0 if not. XL
interprets zero values as FALSE, non-zero numbers as TRUE.

=IF(<T/F,"",A10)

will return a null string if the conditional is TRUE, the contents of
A10 if not.

So

=IF(COUNTIF(C:C,A10),"",A10)

will return a null string if the value in A10 is found in column C one
or more times, otherwise the contents of A10 are returned.



In article ,
Ingeniero1
wrote:

I thought that I was well familiar with the 'COUNTIF' function, but had
never used it with this specific notation - {C:C,A10}, as in {E10:
=IF(COUNTIF(C:C,A10),"",A10)}

I can see what it does, but when you get a minute (or two) could you
briefly explain it?

  #5   Report Post  
Ingeniero1
 
Posts: n/a
Default


Excellent explanation!
What I learned:
• C:C = C1:C64636
• That "COUNTIF" can return "0=True" and "0=False", and not just
'counts'
• The use of "True" and "False" within "IF(test,if-true,if-false)"

Thanks!!!!!!

Alex


--
Ingeniero1
------------------------------------------------------------------------
Ingeniero1's Profile: http://www.excelforum.com/member.php...fo&userid=4029
View this thread: http://www.excelforum.com/showthread...hreadid=466041



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
How do I compare lists and eliminate duplictates kateshere Excel Discussion (Misc queries) 2 July 11th 05 08:39 PM
Can I compare 2 lists to combine duplicate entries in new list? Tinytall Excel Worksheet Functions 0 May 13th 05 04:00 PM
Compare ranges different size markx Excel Worksheet Functions 3 February 23rd 05 09:08 AM
How can I compare two lists of data (channel lineups) - find what. mf4852 Excel Worksheet Functions 3 February 6th 05 04:59 PM
How do I compare two lists of names in excel? Jack the Cate Excel Discussion (Misc queries) 1 December 24th 04 12:07 PM


All times are GMT +1. The time now is 04:28 AM.

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"