Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I have two excel files source file and destination file.
My source file contains 3 columns (Name,Age,Id)
My destination file will have only 1 column which includes all the headers into single column
ex:
Destination file
from source Name should be mapped with destination Name
my end file should looks like below,
Kindly someone help me its urgent
Regards,
Abisha
Hi,
Have you tried just outputting using a tFileOutputDelimited and setting the delimiter as a pipe "|"?
Hi,
Have you tried just outputting using a tFileOutputDelimited and setting the delimiter as a pipe "|"?
Use tNormalize Component also you could implement the below logic inside tmap (output side) under expression editor.
row1.Name+ "|" + row1.age+ "|" + row1.id;