A little help with my Excel problem

Soldato
Joined
18 Oct 2002
Posts
5,832
Location
Liverpool :-)
I'm sure this is really simple, but i'm crap at excel :)

say i've got two columns like below:

A1 B1
1 1
2 2
3 4
4 5
5 6
6 7

What i want is a forumla to sort and then display the numbers that is in one column but not the other column, so in this case number 3

Hope that makes some sense, i've got excel tunnel vision at the moment lol

Anyone got any ideas? This is doing my head in now!
 
If you have something like:

Code:
=IF(COUNTIF($B$1:$B$6, A1)=0, A1, "")

going down column C, then the entries in column C are those that are in column A and not in B.

There is no sorting, but I don't see from the previous problem why you need to sort the list?

Also, should the answer be 3 and 7? Because 3 is no in column B and 7 is not in column A
 
Back
Top Bottom