<?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 Re: Need help on reading complex excel source in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Need-help-on-reading-complex-excel-source/m-p/2351834#M118410</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;Here is a custom component tFileExcelSheetInput which is written by talend community user and shared on talend exchange portal. This custom component reads an Excel sheet with lots of comfort functions &lt;BR /&gt; * Automatic adjustment of the columns to read &lt;BR /&gt; * Read comments &lt;BR /&gt; * Read cell style &lt;BR /&gt; * Read and interpret date formats very tolerant &lt;BR /&gt; * Read only the columns you need &lt;BR /&gt; * Can skip erroneous cell content&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please take a look at this custom component:&lt;A title="https://exchange.talend.com/#marketplaceproductoverview:marketplace=marketplace%252F1&amp;amp;p=marketplace%252F1%252Fproducts%252F542&amp;amp;pi=marketplace%252F1%252Fproducts%252F542%252Fitems%252F2643" href="https://exchange.talend.com/#marketplaceproductoverview:marketplace=marketplace%252F1&amp;amp;p=marketplace%252F1%252Fproducts%252F542&amp;amp;pi=marketplace%252F1%252Fproducts%252F542%252Fitems%252F2643" target="_self" rel="nofollow noopener noreferrer"&gt;https://exchange.talend.com/#marketplaceproductoverview:marketplace=marketplace%252F1&amp;amp;p=marketplace%252F1%252Fproducts%252F542&amp;amp;pi=marketplace%252F1%252Fproducts%252F542%252Fitems%252F2643&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Best regards&lt;/P&gt;
&lt;P&gt;Sabrina&lt;/P&gt;</description>
    <pubDate>Mon, 25 Sep 2017 04:23:36 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2017-09-25T04:23:36Z</dc:date>
    <item>
      <title>Need help on reading complex excel source</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Need-help-on-reading-complex-excel-source/m-p/2351833#M118409</link>
      <description>&lt;P&gt;In one of our job&amp;nbsp;the source is excel.&lt;/P&gt; 
&lt;P&gt;It should read the data in a set of rows and columns, additionally it needs to read particular cell, file name, sheet name, row number as additional columns.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Below is the scenario:&lt;/P&gt; 
&lt;P&gt;It needs to read the data range from D5:Q6, additionally it reads C9 cell value, D2 cell value, file name, sheet name, row number as additional columns.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;In the component, I&amp;nbsp;can read data range and can get the sheet name if we process sheets individually. We are in a process to determine how to read C9 cell value, D2 value, file name, sheet name, row number and append as additional columns.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Below is the example:&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Excel Source:&lt;/P&gt; 
&lt;P&gt;Data Range(D5:G6) with below values&lt;/P&gt; 
&lt;TABLE&gt; 
 &lt;TBODY&gt; 
  &lt;TR&gt; 
   &lt;TD&gt; &lt;P&gt;D5&lt;/P&gt; &lt;/TD&gt; 
   &lt;TD&gt; &lt;P&gt;E5&lt;/P&gt; &lt;/TD&gt; 
   &lt;TD&gt; &lt;P&gt;F5&lt;/P&gt; &lt;/TD&gt; 
   &lt;TD&gt; &lt;P&gt;G5&lt;/P&gt; &lt;/TD&gt; 
  &lt;/TR&gt; 
  &lt;TR&gt; 
   &lt;TD&gt; &lt;P&gt;D6&lt;/P&gt; &lt;/TD&gt; 
   &lt;TD&gt; &lt;P&gt;E6&lt;/P&gt; &lt;/TD&gt; 
   &lt;TD&gt; &lt;P&gt;F6&lt;/P&gt; &lt;/TD&gt; 
   &lt;TD&gt; &lt;P&gt;G6&lt;/P&gt; &lt;/TD&gt; 
  &lt;/TR&gt; 
 &lt;/TBODY&gt; 
&lt;/TABLE&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Cell Value in C9 is C9, Cell Value in D2 is D2&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;File Name as Excel&lt;/P&gt; 
&lt;P&gt;Sheet Name as sheet1&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;The output should as below:&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;TABLE&gt; 
 &lt;TBODY&gt; 
  &lt;TR&gt; 
   &lt;TD&gt; &lt;P&gt;D5&lt;/P&gt; &lt;/TD&gt; 
   &lt;TD&gt; &lt;P&gt;E5&lt;/P&gt; &lt;/TD&gt; 
   &lt;TD&gt; &lt;P&gt;F5&lt;/P&gt; &lt;/TD&gt; 
   &lt;TD&gt; &lt;P&gt;G5&lt;/P&gt; &lt;/TD&gt; 
   &lt;TD&gt; &lt;P&gt;C9&lt;/P&gt; &lt;/TD&gt; 
   &lt;TD&gt; &lt;P&gt;D2&lt;/P&gt; &lt;/TD&gt; 
   &lt;TD&gt; &lt;P&gt;Excel&lt;/P&gt; &lt;/TD&gt; 
   &lt;TD&gt; &lt;P&gt;Sheet1&lt;/P&gt; &lt;/TD&gt; 
   &lt;TD&gt; &lt;P&gt;5&lt;/P&gt; &lt;/TD&gt; 
  &lt;/TR&gt; 
  &lt;TR&gt; 
   &lt;TD&gt; &lt;P&gt;D6&lt;/P&gt; &lt;/TD&gt; 
   &lt;TD&gt; &lt;P&gt;E6&lt;/P&gt; &lt;/TD&gt; 
   &lt;TD&gt; &lt;P&gt;F6&lt;/P&gt; &lt;/TD&gt; 
   &lt;TD&gt; &lt;P&gt;G6&lt;/P&gt; &lt;/TD&gt; 
   &lt;TD&gt; &lt;P&gt;C9&lt;/P&gt; &lt;/TD&gt; 
   &lt;TD&gt; &lt;P&gt;D2&lt;/P&gt; &lt;/TD&gt; 
   &lt;TD&gt; &lt;P&gt;Excel&lt;/P&gt; &lt;/TD&gt; 
   &lt;TD&gt; &lt;P&gt;Sheet1&lt;/P&gt; &lt;/TD&gt; 
   &lt;TD&gt; &lt;P&gt;6&lt;/P&gt; &lt;/TD&gt; 
  &lt;/TR&gt; 
 &lt;/TBODY&gt; 
&lt;/TABLE&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;5 and 6 are the row numbers of the excel.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;The above example is for one sheet. But it should read multiple sheets within excel.&lt;/P&gt; 
&lt;P&gt;Could you please guide me how to approach this scenario.&lt;/P&gt; 
&lt;P&gt;Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Sep 2017 18:43:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Need-help-on-reading-complex-excel-source/m-p/2351833#M118409</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-09-21T18:43:58Z</dc:date>
    </item>
    <item>
      <title>Re: Need help on reading complex excel source</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Need-help-on-reading-complex-excel-source/m-p/2351834#M118410</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;Here is a custom component tFileExcelSheetInput which is written by talend community user and shared on talend exchange portal. This custom component reads an Excel sheet with lots of comfort functions &lt;BR /&gt; * Automatic adjustment of the columns to read &lt;BR /&gt; * Read comments &lt;BR /&gt; * Read cell style &lt;BR /&gt; * Read and interpret date formats very tolerant &lt;BR /&gt; * Read only the columns you need &lt;BR /&gt; * Can skip erroneous cell content&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please take a look at this custom component:&lt;A title="https://exchange.talend.com/#marketplaceproductoverview:marketplace=marketplace%252F1&amp;amp;p=marketplace%252F1%252Fproducts%252F542&amp;amp;pi=marketplace%252F1%252Fproducts%252F542%252Fitems%252F2643" href="https://exchange.talend.com/#marketplaceproductoverview:marketplace=marketplace%252F1&amp;amp;p=marketplace%252F1%252Fproducts%252F542&amp;amp;pi=marketplace%252F1%252Fproducts%252F542%252Fitems%252F2643" target="_self" rel="nofollow noopener noreferrer"&gt;https://exchange.talend.com/#marketplaceproductoverview:marketplace=marketplace%252F1&amp;amp;p=marketplace%252F1%252Fproducts%252F542&amp;amp;pi=marketplace%252F1%252Fproducts%252F542%252Fitems%252F2643&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Best regards&lt;/P&gt;
&lt;P&gt;Sabrina&lt;/P&gt;</description>
      <pubDate>Mon, 25 Sep 2017 04:23:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Need-help-on-reading-complex-excel-source/m-p/2351834#M118410</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-09-25T04:23:36Z</dc:date>
    </item>
  </channel>
</rss>

