Reputation: 67
I have a source table which just has one row:
So i stored the value from Values_per_Country into a parameter:
I want to use this parameter into my SELECT transformation(schema modifier),
Is there a way around this,so i can use values from the source tables?
Upvotes: 0
Views: 620
Reputation: 8660
You can create a Lookup activity to get the column values of source table. And then pass to the parameter in Data Flow. Finally, your expression type == 'double' && position > 0 && position <= $parameter3
will work.
Screenshot:
Expression in the below image: @activity('Lookup1').output.firstRow['Values_per_Country']
Upvotes: 2