Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
Compare two excel documents
Name: sunda Date: October 10, 2006 at 00:34:08 Pacific OS: Windows XP CPU/Ram: Intel Product: HP
Comment:
Hello,
I have a problem that I don't know how to solve.
I have two almost identical excel-documents. A few of the numbers are new in one of the documents. What I want to do is to compare the documents and in some way highlight the new numbers that are not present in both of the documents (Either by having them in color, extract them to a third document or some other clever solution). Is this possible to do? And if it is, do you know how to do this?
Name: cach Date: October 10, 2006 at 12:02:10 Pacific
Reply:
You could use another workbook or spare worksheet and subtract the contents of each cell in one workbook from the corresponding cell in the other workbook. Then all cells with a calculated value not equal to zero relate to the new numbers.
Not a clever solution but it should work, it would good to use conditional formatting to change the colour but you cannot refer to another workbook/sheet.
Cliff
0
Response Number 2
Name: jon_k Date: October 12, 2006 at 09:12:16 Pacific
Reply:
Provided each row has a unique reference, I would use =if(isna(match(A2,sheet2!$A:$A,0))=true,1,0)
And the same for the second sheet. Apply a filter to exclude all the 0s, and bob's your uncle. Two lists of "unique" entries.
Summary: Hi, I have two excel tables(lists of companies with contact details) that have the same structure.First column is company name, second column is adress etc... There are some companies that appear in b...
Summary: Thanks mike, I tried that and nothing happened, that i think was for numbers. What i am looking for is like the post "compare two columns in excel" he was compairing names of companies, and i am just...