Neo
Neo

Reputation: 16219

insert data from more than one excel sheet of one file into table using SSIS?

i have one excel file that contains a1 to a5 rows with values now a6= sum(a1:a5)

I want a6 value to be inserted into database using ssis package

How can i do mapping ;(

Upvotes: 0

Views: 483

Answers (1)

Daryl Wenman-Bateson
Daryl Wenman-Bateson

Reputation: 3939

If you always want to ignore the first 5 rows and take the value in the 6th, use the SQL Server Destination component and set the first row and last row to insert as explained by Jiqin Ma Import single cell

Upvotes: 1

Related Questions