Compare two columns

G

Guest

Please help...

I have a really big spreadsheet and would like to find all the unmatched
information when comparing two columns in a spreadsheet. Is there any
formula or functions to perform this checking, or is there any methods
suggested?

Example:
Info listed In column A: red, blue, green
Info listed in column B: blue, violet, black, yellow
Result (unmatched info) after comparing column B to column A: violet, black
and yellow
 
M

Myrna Larson

Use this formula in a helper column on the right:

=COUNTIF($A$1:$A$1000,B1)

and copy this down. Adjust ranges to suit, of course. Then Data/AutoFilter on
that column for values of 0.

On Fri, 3 Dec 2004 15:49:05 -0800, "Need Helper" <Need
 
D

Domenic

C1, copied down:

=INDEX(B:B,SMALL(IF(COUNTIF($A$1:$A$3,$B$1:$B$4)=0,ROW($B$1:$B$4)),ROW()-
ROW($C$1)+1))

....confirmed with CONTROL+SHIFT+ENTER.

Hope this helps!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top