tags:

views:

226

answers:

1

I have an ID in a package variable that I need to add as a column (with each row having that package variablevalue) in a Dataflow.

Is there a way to do this with only the Derived Column?

I know I can using the Derived Column to make a new column and then set the value using a Script Component, but that seems inefficient.

+3  A: 

Yes: Add the derived column component to the dataflow, then add a row and use the variable as the source. You should see Variables/Columns in the upper-left of the designer.

Meff
that is exactly what I was looking for -- thanks
Jason W

related questions