<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Create Multiple Excel Output Files in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Create-Multiple-Excel-Output-Files/m-p/2329468#M98657</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm looking for some guidance on the best way to create multiple MS Excel xls or xlsx formatted files, if this is even possible.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The job begins with a tOracleInput, which creates three headers and places the data as needed into an Excel file. However, I need to have multiple xlsx files created, so if there are 5500 rows then six (6) xlsx files are created with no more than 1000 rows per file. This is necessary so the file will meet upload requirements specified by an OEM site, which also does not accept csv files.&lt;/P&gt;</description>
    <pubDate>Sat, 16 Nov 2024 08:30:47 GMT</pubDate>
    <dc:creator>grigby</dc:creator>
    <dc:date>2024-11-16T08:30:47Z</dc:date>
    <item>
      <title>Create Multiple Excel Output Files</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Create-Multiple-Excel-Output-Files/m-p/2329468#M98657</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm looking for some guidance on the best way to create multiple MS Excel xls or xlsx formatted files, if this is even possible.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The job begins with a tOracleInput, which creates three headers and places the data as needed into an Excel file. However, I need to have multiple xlsx files created, so if there are 5500 rows then six (6) xlsx files are created with no more than 1000 rows per file. This is necessary so the file will meet upload requirements specified by an OEM site, which also does not accept csv files.&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 08:30:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Create-Multiple-Excel-Output-Files/m-p/2329468#M98657</guid>
      <dc:creator>grigby</dc:creator>
      <dc:date>2024-11-16T08:30:47Z</dc:date>
    </item>
    <item>
      <title>Re: Create Multiple Excel Output Files</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Create-Multiple-Excel-Output-Files/m-p/2329469#M98658</link>
      <description>Hi, 
&lt;BR /&gt;Use a tFileOutputDelimited with the "Split output in several files" option. Then iterate over the generated files to generate the corresponding Excel files. 
&lt;BR /&gt;You may also refer to this post for a different approach 
&lt;A href="https://community.qlik.com/s/feed/0D53p00007vCpxICAS" target="_blank"&gt;https://community.talend.com/t5/Design-and-Development/tFileOutputDelimited-split-output-in-multiple-files-and-zip-at/td-p/40013&lt;/A&gt;</description>
      <pubDate>Fri, 23 Mar 2018 06:31:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Create-Multiple-Excel-Output-Files/m-p/2329469#M98658</guid>
      <dc:creator>TRF</dc:creator>
      <dc:date>2018-03-23T06:31:35Z</dc:date>
    </item>
    <item>
      <title>Re: Create Multiple Excel Output Files</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Create-Multiple-Excel-Output-Files/m-p/2329470#M98659</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Thanks for the input, but I'm not sure I understand the iterate over the&lt;BR /&gt;generated files to generate the corresponding Excel files?&lt;BR /&gt;&lt;BR /&gt;This is what the job looks like, and the files are created as expected&lt;BR /&gt;(e,g, XXX1, XXX2, XXX3, etc.), but I do not see an iterate option off the&lt;BR /&gt;tfileoutput.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 23 Mar 2018 19:12:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Create-Multiple-Excel-Output-Files/m-p/2329470#M98659</guid>
      <dc:creator>grigby</dc:creator>
      <dc:date>2018-03-23T19:12:33Z</dc:date>
    </item>
    <item>
      <title>Re: Create Multiple Excel Output Files</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Create-Multiple-Excel-Output-Files/m-p/2329471#M98660</link>
      <description>So you have created a collection of csv files. Now start à new subjob connected to the previous one with a onSubjobOk trigger. Use a tFileList to iterate the csv files then tFileInputDelimited to read the content of each file and tFileOutputExcel to generate the corresponding Excel files. Use variables from tFileList to get the file names.</description>
      <pubDate>Sat, 24 Mar 2018 14:37:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Create-Multiple-Excel-Output-Files/m-p/2329471#M98660</guid>
      <dc:creator>TRF</dc:creator>
      <dc:date>2018-03-24T14:37:41Z</dc:date>
    </item>
    <item>
      <title>Re: Create Multiple Excel Output Files</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Create-Multiple-Excel-Output-Files/m-p/2329472#M98661</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I'm new to all of this so please be patient. I'm unsure what variable you&lt;BR /&gt;are referencing in the tFileList... Do you mean "*.csv" in the filemask?&lt;BR /&gt;&lt;BR /&gt;I used a variable ((String)globalMap.get("tFileList_1_CURRENT_FILEPATH"))&lt;BR /&gt;for the tFileInputDelimited to read all the files in the folder. I'm unable&lt;BR /&gt;to use the Iterate from the delimited file to the tFileOutputExcel as shown&lt;BR /&gt;in the view below.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;If I read each file using the path " C:/.../.../Documents/Output/UDM1.csv"&lt;BR /&gt;then UDM2 etc. then each file can be written using a row# (Main) as shown&lt;BR /&gt;below.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sun, 25 Mar 2018 03:42:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Create-Multiple-Excel-Output-Files/m-p/2329472#M98661</guid>
      <dc:creator>grigby</dc:creator>
      <dc:date>2018-03-25T03:42:33Z</dc:date>
    </item>
    <item>
      <title>Re: Create Multiple Excel Output Files</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Create-Multiple-Excel-Output-Files/m-p/2329473#M98662</link>
      <description>That's exactly what you need to do: 
&lt;BR /&gt;tFileList--(iterate)--&amp;gt;tFileInputDelimited--(main)--&amp;gt;tFileOutputExcel 
&lt;BR /&gt;In tFileOutputExcel you just have to replace "csv" by "xlsx" in the tFileList_1_CURRENT_FILEPATH variable to generate the filename : 
&lt;BR /&gt;((String)globalMap.get("tFileList_1_CURRENT_FILEPATH")).replace("csv", "xlsx")</description>
      <pubDate>Sun, 25 Mar 2018 06:52:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Create-Multiple-Excel-Output-Files/m-p/2329473#M98662</guid>
      <dc:creator>TRF</dc:creator>
      <dc:date>2018-03-25T06:52:44Z</dc:date>
    </item>
    <item>
      <title>Re: Create Multiple Excel Output Files</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Create-Multiple-Excel-Output-Files/m-p/2329474#M98663</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I placed the ((String)globalMap.get("tFileList_1_CURRENT_FILEPATH")&lt;BR /&gt;).replace("csv","xlsx") in the tFileInputDelimited, but when I run the job&lt;BR /&gt;I get:&lt;BR /&gt;C:\Users\grigby\Documents\Output\udm0.xlsx (The system cannot find the file&lt;BR /&gt;specified)&lt;BR /&gt;C:\Users\grigby\Documents\Output\udm1.xlsx (The system cannot find the file&lt;BR /&gt;specified)&lt;BR /&gt;C:\Users\grigby\Documents\Output\udm2.xlsx (The system cannot find the file&lt;BR /&gt;specified)&lt;BR /&gt;C:\Users\grigby\Documents\Output\udm3.xlsx (The system cannot find the file&lt;BR /&gt;specified)&lt;BR /&gt;C:\Users\grigby\Documents\Output\udm4.xlsx (The system cannot find the file&lt;BR /&gt;specified)&lt;BR /&gt;C:\Users\grigby\Documents\Output\udm5.xlsx (The system cannot find the file&lt;BR /&gt;specified)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 26 Mar 2018 16:31:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Create-Multiple-Excel-Output-Files/m-p/2329474#M98663</guid>
      <dc:creator>grigby</dc:creator>
      <dc:date>2018-03-26T16:31:33Z</dc:date>
    </item>
    <item>
      <title>Re: Create Multiple Excel Output Files</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Create-Multiple-Excel-Output-Files/m-p/2329475#M98664</link>
      <description>You don't have to change the filepath in the tFileInputDelimited but in the tFileOutputExcel.</description>
      <pubDate>Mon, 26 Mar 2018 17:37:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Create-Multiple-Excel-Output-Files/m-p/2329475#M98664</guid>
      <dc:creator>TRF</dc:creator>
      <dc:date>2018-03-26T17:37:59Z</dc:date>
    </item>
    <item>
      <title>Re: Create Multiple Excel Output Files</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Create-Multiple-Excel-Output-Files/m-p/2329476#M98665</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks so much for the help and solution!!&lt;/P&gt;</description>
      <pubDate>Tue, 27 Mar 2018 13:22:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Create-Multiple-Excel-Output-Files/m-p/2329476#M98665</guid>
      <dc:creator>grigby</dc:creator>
      <dc:date>2018-03-27T13:22:42Z</dc:date>
    </item>
    <item>
      <title>Re: Create Multiple Excel Output Files</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Create-Multiple-Excel-Output-Files/m-p/2329477#M98666</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Im basic learner for this talend tool. So in my project i need to convert 10 different excel files which is in one folder into&amp;nbsp; "csv File(s)" . so can you please help me with the same process step by step . Because i couldn't understand how to configure the three components (tfilelist, tfileinputdelimited, tfileoutputexcel)&amp;nbsp; you explained&lt;/P&gt;</description>
      <pubDate>Thu, 02 Jul 2020 11:35:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Create-Multiple-Excel-Output-Files/m-p/2329477#M98666</guid>
      <dc:creator>lav5248</dc:creator>
      <dc:date>2020-07-02T11:35:41Z</dc:date>
    </item>
    <item>
      <title>Re: Create Multiple Excel Output Files</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Create-Multiple-Excel-Output-Files/m-p/2329478#M98667</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Im basic learner for this talend tool. So in my project i need to convert 10 different excel files which is in one folder into&amp;nbsp; "csv File(s)" . so can you please help me with the same process step by step . Because i couldn't understand how to configure the three components (tfilelist, tfileinputdelimited, tfileoutputexcel)&amp;nbsp; you explained&lt;/P&gt;</description>
      <pubDate>Thu, 02 Jul 2020 11:35:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Create-Multiple-Excel-Output-Files/m-p/2329478#M98667</guid>
      <dc:creator>lav5248</dc:creator>
      <dc:date>2020-07-02T11:35:41Z</dc:date>
    </item>
    <item>
      <title>Re: Create Multiple Excel Output Files</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Create-Multiple-Excel-Output-Files/m-p/2329479#M98668</link>
      <description>Hi,
&lt;BR /&gt;
&lt;BR /&gt;tFileList--(iterate)--&amp;gt; tFileInputExcel--(main)--&amp;gt; tFileOutputExcel
&lt;BR /&gt;
&lt;BR /&gt;[image: image.png]
&lt;BR /&gt;
&lt;BR /&gt;In the *tFileList *(Component tab) enter the path where the files are
&lt;BR /&gt;located in the directory field. Since there are multiple files, use the
&lt;BR /&gt;*Filemask* "*.csv" value. If there are multiple files, but only one set is
&lt;BR /&gt;needed then a more restrictive entry such as "FileXXX*.csv" could be used.
&lt;BR /&gt;
&lt;BR /&gt;[image: image.png]
&lt;BR /&gt;
&lt;BR /&gt;In the *tFileInputExcel *(Component tab) type, or copy and paste*
&lt;BR /&gt;((String)globalMap.get("tFileList_1_CURRENT_FILEPATH"))* into the file
&lt;BR /&gt;name/Stream field.
&lt;BR /&gt;
&lt;BR /&gt;[image: image.png]
&lt;BR /&gt;
&lt;BR /&gt;In the tFileOutputExcel(Component tab) copy and paste (
&lt;BR /&gt;*String)globalMap.get("**tFileList_1_CURRENT_FILEPATH")**).replace("xls",
&lt;BR /&gt;"csv") *into the File Name field.
&lt;BR /&gt;
&lt;BR /&gt;[image: image.png]
&lt;BR /&gt;</description>
      <pubDate>Thu, 02 Jul 2020 15:00:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Create-Multiple-Excel-Output-Files/m-p/2329479#M98668</guid>
      <dc:creator>grigby</dc:creator>
      <dc:date>2020-07-02T15:00:37Z</dc:date>
    </item>
    <item>
      <title>Re: Create Multiple Excel Output Files</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Create-Multiple-Excel-Output-Files/m-p/2329480#M98669</link>
      <description>Hi,
&lt;BR /&gt;
&lt;BR /&gt;tFileList--(iterate)--&amp;gt; tFileInputExcel--(main)--&amp;gt; tFileOutputExcel
&lt;BR /&gt;
&lt;BR /&gt;[image: image.png]
&lt;BR /&gt;
&lt;BR /&gt;In the *tFileList *(Component tab) enter the path where the files are
&lt;BR /&gt;located in the directory field. Since there are multiple files, use the
&lt;BR /&gt;*Filemask* "*.csv" value. If there are multiple files, but only one set is
&lt;BR /&gt;needed then a more restrictive entry such as "FileXXX*.csv" could be used.
&lt;BR /&gt;
&lt;BR /&gt;[image: image.png]
&lt;BR /&gt;
&lt;BR /&gt;In the *tFileInputExcel *(Component tab) type, or copy and paste*
&lt;BR /&gt;((String)globalMap.get("tFileList_1_CURRENT_FILEPATH"))* into the file
&lt;BR /&gt;name/Stream field.
&lt;BR /&gt;
&lt;BR /&gt;[image: image.png]
&lt;BR /&gt;
&lt;BR /&gt;In the tFileOutputExcel(Component tab) copy and paste (
&lt;BR /&gt;*String)globalMap.get("**tFileList_1_CURRENT_FILEPATH")**).replace("xls",
&lt;BR /&gt;"csv") *into the File Name field.
&lt;BR /&gt;
&lt;BR /&gt;[image: image.png]
&lt;BR /&gt;</description>
      <pubDate>Thu, 02 Jul 2020 15:00:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Create-Multiple-Excel-Output-Files/m-p/2329480#M98669</guid>
      <dc:creator>grigby</dc:creator>
      <dc:date>2020-07-02T15:00:37Z</dc:date>
    </item>
    <item>
      <title>Re: Create Multiple Excel Output Files</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Create-Multiple-Excel-Output-Files/m-p/2329481#M98670</link>
      <description>&lt;P&gt;Hi Girigby,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Thanks for the detailed explanation. Since i'm new to this tool i need few clarifications too.Kindly bare with me &lt;IMG id="smileysad" class="emoticon emoticon-smileysad" src="https://community.qlik.com/" alt="Smiley Sad" title="Smiley Sad" /&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I did same as what you said, my doubt is, do i need to add schema for the tfileinputexcel component because if i run the job its asking "tfileinputexcel - parameter (sheetlist) must have atleast one value"&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Moreover i doubt whether i'm doing it correctly&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;My input folder has (xlsx) files which has different column and different values for each file and i need that to be converted into "csv" files respective to their file names&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;tFileList--(iterate)--&amp;gt; tFileInputExcel--(main)--&amp;gt; tFileOutputExcel&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;Changes made in components file name/stream are:&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;1. browsed the file location need in the directory field&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;2. tFileList -&amp;gt; filemask -&amp;gt; "*.csv"&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;3.&amp;nbsp;&lt;SPAN&gt;tFileInputExcel -&amp;gt;&amp;nbsp;((String)globalMap.get("tFileList_1_CURRENT_FILEPATH"))&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;4.&amp;nbsp;tFileOutputExcel-&amp;gt; String)globalMap.get("tFileList_1_CURRENT_FILEPATH")).replace("xlsx",&amp;nbsp;"csv")&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;kindly let me know the above one is correct . i need to get it to be converted &lt;IMG id="smileysad" class="emoticon emoticon-smileysad" src="https://community.qlik.com/" alt="Smiley Sad" title="Smiley Sad" /&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;Thanks in advance&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Jul 2020 15:42:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Create-Multiple-Excel-Output-Files/m-p/2329481#M98670</guid>
      <dc:creator>lav5248</dc:creator>
      <dc:date>2020-07-02T15:42:26Z</dc:date>
    </item>
    <item>
      <title>Re: Create Multiple Excel Output Files</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Create-Multiple-Excel-Output-Files/m-p/2329482#M98671</link>
      <description>&lt;P&gt;Hi Girigby,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Thanks for the detailed explanation. Since i'm new to this tool i need few clarifications too.Kindly bare with me &lt;IMG id="smileysad" class="emoticon emoticon-smileysad" src="https://community.qlik.com/" alt="Smiley Sad" title="Smiley Sad" /&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I did same as what you said, my doubt is, do i need to add schema for the tfileinputexcel component because if i run the job its asking "tfileinputexcel - parameter (sheetlist) must have atleast one value"&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Moreover i doubt whether i'm doing it correctly&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;My input folder has (xlsx) files which has different column and different values for each file and i need that to be converted into "csv" files respective to their file names&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;tFileList--(iterate)--&amp;gt; tFileInputExcel--(main)--&amp;gt; tFileOutputExcel&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;Changes made in components file name/stream are:&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;1. browsed the file location need in the directory field&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;2. tFileList -&amp;gt; filemask -&amp;gt; "*.csv"&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;3.&amp;nbsp;&lt;SPAN&gt;tFileInputExcel -&amp;gt;&amp;nbsp;((String)globalMap.get("tFileList_1_CURRENT_FILEPATH"))&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;4.&amp;nbsp;tFileOutputExcel-&amp;gt; String)globalMap.get("tFileList_1_CURRENT_FILEPATH")).replace("xlsx",&amp;nbsp;"csv")&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;kindly let me know the above one is correct . i need to get it to be converted &lt;IMG id="smileysad" class="emoticon emoticon-smileysad" src="https://community.qlik.com/" alt="Smiley Sad" title="Smiley Sad" /&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;Thanks in advance&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Jul 2020 15:42:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Create-Multiple-Excel-Output-Files/m-p/2329482#M98671</guid>
      <dc:creator>lav5248</dc:creator>
      <dc:date>2020-07-02T15:42:26Z</dc:date>
    </item>
    <item>
      <title>Re: Create Multiple Excel Output Files</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Create-Multiple-Excel-Output-Files/m-p/2329483#M98672</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;The tFileList Filemask would be "*.xlsx".&lt;BR /&gt;&lt;BR /&gt;The tFileInputExcel&lt;BR /&gt;-&amp;gt; ((String)globalMap.get("tFileList_1_CURRENT_FILEPATH"). Correct. You&lt;BR /&gt;will need to ensure the "Read excel2007... checkbox is selected. You can&lt;BR /&gt;use the "All Sheets" checkbox. The sheet name will match whatever is in the&lt;BR /&gt;original file.&lt;BR /&gt;&lt;BR /&gt;In re to the schema on the input file, yes, this would need to be completed.&lt;BR /&gt;Correct. tFileOutputExcel-&amp;gt;&lt;BR /&gt;String)globalMap.get("tFileList_1_CURRENT_FILEPATH")).replace("xlsx", "csv".&lt;BR /&gt;Make sure you change the Field Separator to "," for the column entries&lt;BR /&gt;otherwise if left as ";" a single column would appear as&lt;BR /&gt;Value0;Value1;Value2;Value3.&lt;BR /&gt;&lt;BR /&gt;The original goal of this solution was to rename certain files where the&lt;BR /&gt;schema of the received files are all the same and to rename the files to&lt;BR /&gt;the xlsx for further processing.&lt;BR /&gt;&lt;BR /&gt;As noted, the files contain different column headers and values, so you may&lt;BR /&gt;want to consider using a tFileInputExcel &amp;gt;tMap&amp;gt;tFileOutputDelimited method.&lt;BR /&gt;This will allow control over the inputs and outputs using the csv format.&lt;BR /&gt;</description>
      <pubDate>Thu, 02 Jul 2020 17:29:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Create-Multiple-Excel-Output-Files/m-p/2329483#M98672</guid>
      <dc:creator>grigby</dc:creator>
      <dc:date>2020-07-02T17:29:37Z</dc:date>
    </item>
    <item>
      <title>Re: Create Multiple Excel Output Files</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Create-Multiple-Excel-Output-Files/m-p/2329484#M98673</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;The tFileList Filemask would be "*.xlsx".&lt;BR /&gt;&lt;BR /&gt;The tFileInputExcel&lt;BR /&gt;-&amp;gt; ((String)globalMap.get("tFileList_1_CURRENT_FILEPATH"). Correct. You&lt;BR /&gt;will need to ensure the "Read excel2007... checkbox is selected. You can&lt;BR /&gt;use the "All Sheets" checkbox. The sheet name will match whatever is in the&lt;BR /&gt;original file.&lt;BR /&gt;&lt;BR /&gt;In re to the schema on the input file, yes, this would need to be completed.&lt;BR /&gt;Correct. tFileOutputExcel-&amp;gt;&lt;BR /&gt;String)globalMap.get("tFileList_1_CURRENT_FILEPATH")).replace("xlsx", "csv".&lt;BR /&gt;Make sure you change the Field Separator to "," for the column entries&lt;BR /&gt;otherwise if left as ";" a single column would appear as&lt;BR /&gt;Value0;Value1;Value2;Value3.&lt;BR /&gt;&lt;BR /&gt;The original goal of this solution was to rename certain files where the&lt;BR /&gt;schema of the received files are all the same and to rename the files to&lt;BR /&gt;the xlsx for further processing.&lt;BR /&gt;&lt;BR /&gt;As noted, the files contain different column headers and values, so you may&lt;BR /&gt;want to consider using a tFileInputExcel &amp;gt;tMap&amp;gt;tFileOutputDelimited method.&lt;BR /&gt;This will allow control over the inputs and outputs using the csv format.&lt;BR /&gt;</description>
      <pubDate>Thu, 02 Jul 2020 17:29:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Create-Multiple-Excel-Output-Files/m-p/2329484#M98673</guid>
      <dc:creator>grigby</dc:creator>
      <dc:date>2020-07-02T17:29:37Z</dc:date>
    </item>
    <item>
      <title>Re: Create Multiple Excel Output Files</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Create-Multiple-Excel-Output-Files/m-p/2329485#M98674</link>
      <description>&lt;P&gt;Hi ,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Thank you so much i got result as expected. &lt;IMG id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://community.qlik.com/" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;so as you said i'll try doing the TMAP component for &lt;SPAN&gt;different column headers and values &lt;IMG id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://community.qlik.com/" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;Thanks much once again &lt;IMG id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://community.qlik.com/" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jul 2020 07:02:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Create-Multiple-Excel-Output-Files/m-p/2329485#M98674</guid>
      <dc:creator>lav5248</dc:creator>
      <dc:date>2020-07-03T07:02:32Z</dc:date>
    </item>
    <item>
      <title>Re: Create Multiple Excel Output Files</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Create-Multiple-Excel-Output-Files/m-p/2329486#M98675</link>
      <description>&lt;P&gt;Hi ,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Thank you so much i got result as expected. &lt;IMG id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://community.qlik.com/" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;so as you said i'll try doing the TMAP component for &lt;SPAN&gt;different column headers and values &lt;IMG id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://community.qlik.com/" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;Thanks much once again &lt;IMG id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://community.qlik.com/" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jul 2020 07:02:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Create-Multiple-Excel-Output-Files/m-p/2329486#M98675</guid>
      <dc:creator>lav5248</dc:creator>
      <dc:date>2020-07-03T07:02:32Z</dc:date>
    </item>
    <item>
      <title>Re: Create Multiple Excel Output Files</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Create-Multiple-Excel-Output-Files/m-p/2329487#M98676</link>
      <description>got the results for different column headers and values using tmap component as expected 
&lt;IMG id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://community.qlik.com/" alt="Smiley Happy" title="Smiley Happy" /&gt;</description>
      <pubDate>Fri, 03 Jul 2020 07:40:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Create-Multiple-Excel-Output-Files/m-p/2329487#M98676</guid>
      <dc:creator>lav5248</dc:creator>
      <dc:date>2020-07-03T07:40:30Z</dc:date>
    </item>
  </channel>
</rss>

