Reputation: 25
I am having trouble using the source column in the Derived Column stage of my Data Flow. The column names in my source file are as follows:
employee employee employee name mobile joining number date
Is there any way to use these columns in the Data Flow? I am receiving an error when attempting to use them in the Derived Column stage. Please advise.
Upvotes: 0
Views: 106
Reputation: 7156
I tried to replicate this with column name with \n
and got the error like Column not found
Workaround: If you know the position of the column, you can use the byPosition(<position>)
function.
Output
Upvotes: 0