|
Re: Compare data in separate workbook or worksheet
Hi,
I'm assuming that there could be the same revision numbers for different document numbers. i.e. the revision numbers in col C may not be unique. Since you don't have Excel 2007 then you'll need to create a helper column D in both documents. This should concatenate the column B&C values. i.e.
Code:
=B2&C2
and copied down.
Now in your new revision book, and assuming the older book is called 'Book1' use in E2 and copied down:
Code:
=IF(ISERROR(MATCH(D2,'[Book1.xls]Sheet1'!$D:$D,FALSE)),"New","")
HTH
__________________
Richard Buttrey
If this was useful then please rate it appropriately.
Click the balance scales icon  in the grey (or gray if you inhabit our former colony across the pond  ) bar at the top of my post.
|