Here's my scenaraio:
I have one workbook with a set of products in it. Part numbers in the first
column, and lots of descriptive columns.
I have a second workbook (or could be a second sheet), which has a subset of
the part numbers only in the first column. No other data.
I'd like to set up some sort of conditional formatting that would highlight
the rows of part numbers in the master workbook that are also in the subset.
Is this possible? Does my description make sense?
Thanks for any help provided.
Regards,
William Loring
Yes, it does make sense. And yes it is possible. Normally conditional
formatting will not let you use a formula that refers to another worksheet
or workbook. However, you can "fool" it. Define a name in the first workbook
that refers to the range in the second workbook. Let's say the name you
defined is "XXX". Then use a conditional format with a formula of something
like:=match(a1,XXX,0)>0 and then set the format desired.