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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

How to Convert Csv file to Excel

Hello,

 

I have a requirement wherein I have to convert CSV file to Excel (.xlsx). The file is getting converted but with incorrect data. 

 

Example, If in InputFile i.e CSV there is a row which contains a comma(,) then while loading the data in Excel file comma(,) is removed. 

 

I want data of csv as it is in excel file including all special characters/symbols.

 

I am using Talend Data Fabric 6.3.1 & Java 8 . Kindly check attached images of my job design. 

Job DesignJob DesigntFileInputBasicSettingstFileInputBasicSettingstFileInputAdvSettingstFileInputAdvSettingstFileOutPutExcelSettingstFileOutPutExcelSettings

SourceFileDataSourceFileDataOutPut(xlsx)FileDataOutPut(xlsx)FileData

Labels (4)
1 Solution

Accepted Solutions
manodwhb
Champion II
Champion II

@Vikas,you should get data for each and every coulmn in " " then you will not face any issue.if you have same delimiter as part of column value,you will not extract as per your requirement.

i am just showing,this will be help to you to understand.

 

Input data:-

col1,col2
"Hello"|"ABC"
"aass"|"CDF|AC"

 

Untitled.pngUntitled.png

 

View solution in original post

4 Replies
manodwhb
Champion II
Champion II

@Vikas,you should get data for each and every coulmn in " " then you will not face any issue.if you have same delimiter as part of column value,you will not extract as per your requirement.

i am just showing,this will be help to you to understand.

 

Input data:-

col1,col2
"Hello"|"ABC"
"aass"|"CDF|AC"

 

Untitled.pngUntitled.png

 
manodwhb
Champion II
Champion II

@Vikas,still do you have the issue.

manodwhb
Champion II
Champion II

@Vikas,other way you can check Advanced sepaa0683p000009LxIH.pngrtor.

 

Anonymous
Not applicable
Author

Thanks, @Manohar Escape char and Text enclosure settings solved the problem.