Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Mapping multiple column into single column

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 

0683p000009M2Wg.png

 

 

from source Name should be mapped with destination Name 

 

my end file should looks like below,

 


0683p000009M2Wl.png

 

Kindly someone help me its urgent

 

 

Regards,

Abisha

 

 

 

Labels (2)
1 Solution

Accepted Solutions
David_Beaty
Specialist
Specialist

Hi,

 

Have you tried just outputting using a tFileOutputDelimited and setting the delimiter as a pipe "|"?

View solution in original post

4 Replies
David_Beaty
Specialist
Specialist

Hi,

 

Have you tried just outputting using a tFileOutputDelimited and setting the delimiter as a pipe "|"?

akumar2301
Specialist II
Specialist II

use below expression in tjavarow or in tMap between reading INPUT excel and OUTPUT excel.

output.OutputCol = input.Name+ "|" + input_.age+ "|" + input_row.id;
dipanjan93
Contributor
Contributor

Use tNormalize Component also you could implement the below logic inside tmap (output side) under expression editor. 

row1.Name+ "|" + row1.age+ "|" + row1.id;

Anonymous
Not applicable
Author

Yes i did that only
TfileinputExcel->tMap->tFileOutputDelimited