4
Answers

code for comparing two .xls files(excel documents) in c sharp .net

gold spoon

gold spoon

13y
8.4k
1
Hi all,

I have two excel files.
In each file  two columns are there.
In first file ID And FirstName columns are there.
In second file ID And LastName columns are there.
In both files ID column values are same.

Now my requirement is compare those id columns in two files and replace the FirstName Column(in First File) values with SecondName Column(in Second File) values to corresponding ID's.

Please post code to this..
Answers (4)
0
Yonatan Sion

Yonatan Sion

NA 2 0 13y
if you're willing to consider 3rd party, The following tool will do it for you:

http://nobhillsoft.com/Columbo.aspx
0
Suthish Nair

Suthish Nair

NA 31.7k 4.6m 13y
This not a simple task, so no ready made codes to share. You can also try this with LINQ to EXCEL.
0
gold spoon

gold spoon

NA 3 8.4k 13y
Please post code..
0
Sam Hobbs

Sam Hobbs

NA 28.7k 1.3m 13y
Use the Excel object model (also known as Excel Interop) to read each spreadsheet.

Create a DataSet which is an in-memory copy of data; you do not need to write the data to a database. Create two tables in the DataSet, one for the data for each spreadsheet. Use a SQL query to create a union. Use the result of that to create the new spreadsheet.

Alternatively you can read the data of each of the two spreadsheets into collections and then use LINQ to create the union.