<?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 How to split an output to excel sheets? in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/How-to-split-an-output-to-excel-sheets/m-p/2333729#M102485</link>
    <description>&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;I have this requirement where I need produce an output of the data in multiple excel sheets.&lt;/P&gt;&lt;P&gt;The data contains Country_Name, if there are 3 countries in the field, there should be 3 sheets by country name and the data for the respective country will be displayed only in the country sheets.&lt;/P&gt;&lt;P&gt;I am using tUniqRow to find the unique country names, and was thinking of creating sheets according to the field values. But I am clueless after the tUniqRow component.&lt;/P&gt;&lt;P&gt;Can anyone help?&lt;/P&gt;&lt;P&gt;Thank You,&lt;/P&gt;&lt;P&gt;Shounak Ghosh.&lt;/P&gt;</description>
    <pubDate>Fri, 26 Mar 2021 10:46:31 GMT</pubDate>
    <dc:creator>Ghosh612</dc:creator>
    <dc:date>2021-03-26T10:46:31Z</dc:date>
    <item>
      <title>How to split an output to excel sheets?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-split-an-output-to-excel-sheets/m-p/2333729#M102485</link>
      <description>&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;I have this requirement where I need produce an output of the data in multiple excel sheets.&lt;/P&gt;&lt;P&gt;The data contains Country_Name, if there are 3 countries in the field, there should be 3 sheets by country name and the data for the respective country will be displayed only in the country sheets.&lt;/P&gt;&lt;P&gt;I am using tUniqRow to find the unique country names, and was thinking of creating sheets according to the field values. But I am clueless after the tUniqRow component.&lt;/P&gt;&lt;P&gt;Can anyone help?&lt;/P&gt;&lt;P&gt;Thank You,&lt;/P&gt;&lt;P&gt;Shounak Ghosh.&lt;/P&gt;</description>
      <pubDate>Fri, 26 Mar 2021 10:46:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-split-an-output-to-excel-sheets/m-p/2333729#M102485</guid>
      <dc:creator>Ghosh612</dc:creator>
      <dc:date>2021-03-26T10:46:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to split an output to excel sheets?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-split-an-output-to-excel-sheets/m-p/2333730#M102486</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Could you please explain this better? Giving more details regarding the expected output dispatching files will be preferred.&lt;/P&gt;&lt;P&gt;Are you trying to write your output in the same excel file but in different sheets?&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;Sabrina&lt;/P&gt;</description>
      <pubDate>Mon, 29 Mar 2021 04:54:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-split-an-output-to-excel-sheets/m-p/2333730#M102486</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-03-29T04:54:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to split an output to excel sheets?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-split-an-output-to-excel-sheets/m-p/2333731#M102487</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000DuE9GAAV.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/129401i876E63E5573FC98B/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000DuE9GAAV.png" alt="0695b00000DuE9GAAV.png" /&gt;&lt;/span&gt;Follow below steps :&lt;/P&gt;&lt;P&gt;1) Read the source file&lt;/P&gt;&lt;P&gt;2) use tUnique to find uniques&lt;/P&gt;&lt;P&gt;3)use tflowtoiterate then iterate over source file again&lt;/P&gt;&lt;P&gt;4) use tfilterRow and then filter those rows having same country name by using the globalvariable of tUniqRow&lt;/P&gt;&lt;P&gt;5) then use tFileOutputExcel and in the file name use the same global variable again&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;sourceFile --&amp;gt; tUniq----uniques--&amp;gt; tFlowToIterate --iterate--&amp;gt; sourceFile --&amp;gt;tFilterRow ( column having country name == (String)globalMap.get("row2.column_having_country_name")) --&amp;gt;tFileOutputExcel (filename== 'c:/talend/' + (String)globalMap.get("row2.column_having_country_name")&lt;/P&gt;</description>
      <pubDate>Mon, 29 Mar 2021 06:34:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-split-an-output-to-excel-sheets/m-p/2333731#M102487</guid>
      <dc:creator>Prakhar1</dc:creator>
      <dc:date>2021-03-29T06:34:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to split an output to excel sheets?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-split-an-output-to-excel-sheets/m-p/2333732#M102488</link>
      <description>&lt;P&gt;Replying late on this, but thank you so much. I did mine with reference to your's, just that instead of unirow I used a tMap component.Works like a charm. &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Apr 2021 09:56:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-split-an-output-to-excel-sheets/m-p/2333732#M102488</guid>
      <dc:creator>Ghosh612</dc:creator>
      <dc:date>2021-04-09T09:56:38Z</dc:date>
    </item>
  </channel>
</rss>

