Filter: one columm different from another

  • Thread starter Thread starter vsoler
  • Start date Start date
V

vsoler

XLS 2007

On a range I applied a filter. Now I want to see only the rows where
column A is different from column B

How do I do this?

Thank you
 
I'd insert a new column (column C) and use a formula like:

=a2=b2
(and copy down)

Then filter to show the False's.
 
I'd insert a new column (column C) and use a formula like:

=a2=b2
(and copy down)

Then filter to show the False's.

Thank you Dave, but I am looking for a solution without extra columns,
using just the range that I have and the filters. Do you think that it
is possible to get to the desired result?
 
Hi,

Insert a new column (column C).

In cell C2 put: =IF(A2=B2,"Yes","No").
Note: you can change Yes (if the result is true) and No (if the result is
false) as you like.

Copy/Dropdown C2 to fill all the data in Column A and B.

Thin sort/filter Column C, now you can check it.
 
Back
Top