Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi All,
is it possible to compare the data in two files and copy and paste the rows that are not found in either file to a different spreadsheet or highlight the rows or something to make them stand out? Thanks in advance for the help. Thanks, Tracktraining -- Learning |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Please re-read your posting. I don't think you want to find data that "IS
NOT FOUND IN EITHER FILE". I think you mean "NOT FOUND IN ONE OF THE FILES". the method varies depending on how many columns you are comparing. For comparing one column in each file adding an auxilarry column with a formula works nicely. Use Vlookup in new auxillary column. VLOOKUP(lookup_value,table_array,col_index_num,ran ge_lookup) =Vlookup(A1,Book2.xls!A1:A1000,1,False) An N/A will be returned if not found. You can remove the N/A using an IF statement =if(ISNA(Vlookup(A1,Book2.xls!A1:A1000,1,False))," Not found","Found") You can the remove the formula by by copying the auxilarry column and using PASDTESPECIAL with Value checked to get either "Not found" or "Found". Then sort to get athe Not found items and paste into a new sheet. Then repeat process in 2nd worksheet to get the complete list of items found in only one sheet. "tracktraining" wrote: Hi All, is it possible to compare the data in two files and copy and paste the rows that are not found in either file to a different spreadsheet or highlight the rows or something to make them stand out? Thanks in advance for the help. Thanks, Tracktraining -- Learning |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Comparing two Excel Files | New Users to Excel | |||
Comparing Updated files | Excel Discussion (Misc queries) | |||
Comparing Full Files | Excel Discussion (Misc queries) | |||
comparing two excel files | Excel Programming | |||
Comparing value in two different files | Excel Discussion (Misc queries) |