Hi
I am new to this forum and in excel as well. Currently stuck to this problem, here how it goes : Im working with a huge amount of data in BOOK1.xls and once or twice a week I received an update of the list.
1. I need to compare and find out from the new updated worksheet if there is a new revision, and if there are new documents added to the list. I have tried Vlookup..but it didnt work for me.
Ex. Doc1 has revision 1, 2 in my BOOK1 that I am working on. Note that there is a repetition of the DocName, Doc Number except for the revision.
DocName Doc Number Revision
Spec Doc1 1
Spec Doc1 2
Spec Doc1 3??? <<--- New revision from BOOK2.XLS
Thanks very much and appreciate your help.
Last edited by SelC; 01-31-2010 at 04:22 AM.
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.
and copied down.Code:=B2&C2
Now in your new revision book, and assuming the older book is called 'Book1' use in E2 and copied down:
HTHCode:=IF(ISERROR(MATCH(D2,'[Book1.xls]Sheet1'!$D:$D,FALSE)),"New","")
Richard Buttrey
If this was useful then please rate it appropriately.
Click the small star iconat the bottom left of my post.
Thanks Richard
Care to share, if im going to apply this in Excel 2007.
More power to Excel Forum!![]()
Hi,
In Excel 2007
RgdsCode:=IF(COUNTIFS('[Book1.xls]Sheet1'!$B:$B,$B$4,'[Book1.xls]Sheet1'!$C:$C,C2)=0,"New","")
Richard Buttrey
If this was useful then please rate it appropriately.
Click the small star iconat the bottom left of my post.
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks