Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ActiveX Transformation - for each column

Status
Not open for further replies.

dky1e

Programmer
May 4, 2002
293
US
I need to map the following:
Code:
A     B     C     D
----- ----- ----- -----
a1    b1    c1    d1
a2    b2    c2    d2

to....
Code:
ColName ColData
------- -----
A       a1
A       a2
B       b1
B       b2
etc....

The source is an xls file and I would like to have an ActiveX transformation that will do...

for each column in source
DTSDestination["ColName"] = column name of the source
DTSDestination["ColData"] = DTSSource[ column name of source ]

I will appreciate any ideas....
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top