dgfullin,
Depending on how big/complicated it is, you could just put a formula in one
spreadsheet that subtracts off the value in the same cell in the other
worksheet. For example, if you want to compare D10 in the other workbook
from the value in D10 in the current one, enter the following formula in E10
(or any other free cell):
='[Book2.xls]Sheet1'!D10 - D10
Then copy it down if you want to find the difference for a column. If you
want to compare the whole spreadsheet, make a new workbook and put the
following into A1:
='[Book2.xls]Sheet1'!A1 = '[Book1.xls]Sheet1'!A1
Then copy it over the range that there are values in the workbooks. It
will return TRUE when the cells are the same and FALSE when they're not.
(Obviously, you need to replace "Book1" and "Book2" with the actual names of
your files.
Eric
dgfullin said:
I have 2 bill of materials for a product. I want to know the differences
between the 2. I want to know what was added, what was removed, if any
quantities changed.