Conditional Formatting 4 Columns
Since you have 4 different lists, how about an alternative?
Create a new sheet (call it sheet2)
Put Name in A1
Copy the 4 lists into column A of this new sheet (one under the other)
Then select that range (A1:A###)
data|filter|advanced filter
Copy to another location
List range: (should be entered (a1:A###)
copy to: B1
Check Unique records only box
Now you have a list of unique names in column B.
Delete column A (we're done with it).
In B1, put: On List 1
In C1, put: On List 2
in D1, put: On List 3
in E1, put: On list 4
In B2, put this formula:
=isnumber(match(a2,sheet1!a:a,0))
In C2, put this:
=isnumber(match(a2,sheet1!b:b,0))
In D2:
=isnumber(match(a2,sheet1!c:c,0))
In E2:
=isnumber(match(a2,sheet1!D:D,0))
And drag down as far as column A extends.
Now select columns A:E and do Data|Filter|Autofilter.
You can filter to show the Falses in any column to see where its missing.
David wrote:
I have a workbook with 4 columns containing lists of names from 4 different
workbooks pasted as links to a name list in each of those workbooks, one
list per workbook. I'm trying to compare those lists using Conditional
Formatting. Ideally each column's results will match, but if they don't, I
want to know which ones don't. If I select the entire range, is there a
formula I can use to turn non-matches red?
--
David
--
Dave Peterson
|