<?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: how to read the numeric data from a tfileInputExcel component column. the column contains string as well as numbers in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/how-to-read-the-numeric-data-from-a-tfileInputExcel-component/m-p/2327322#M96713</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Define the input field as String datatype, then use a common Java conversion method to convert to&amp;nbsp;the expected output format (Integer, Float, BigDecimal, ...).&lt;/P&gt;
&lt;P&gt;You can define your own conversion method using a routine or if you don't have to reuse it elsewhere, you can do it using a single tJavaRow component.&lt;/P&gt;
&lt;P&gt;Google will help you to find the desired conversoin Java code.&lt;/P&gt;</description>
    <pubDate>Thu, 22 Mar 2018 07:57:14 GMT</pubDate>
    <dc:creator>TRF</dc:creator>
    <dc:date>2018-03-22T07:57:14Z</dc:date>
    <item>
      <title>how to read the numeric data from a tfileInputExcel component column. the column contains string as well as numbers</title>
      <link>https://community.qlik.com/t5/Talend-Studio/how-to-read-the-numeric-data-from-a-tfileInputExcel-component/m-p/2327321#M96712</link>
      <description>&lt;P&gt;hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;i want to read the numerical data from the input column of an excel file. the column contains String data as well as Numerical data. i am not able to do this. please help me hoe to do this. I want to print the numerical data in a table format.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Mastan&lt;/P&gt;</description>
      <pubDate>Thu, 22 Mar 2018 07:05:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/how-to-read-the-numeric-data-from-a-tfileInputExcel-component/m-p/2327321#M96712</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-03-22T07:05:32Z</dc:date>
    </item>
    <item>
      <title>Re: how to read the numeric data from a tfileInputExcel component column. the column contains string as well as numbers</title>
      <link>https://community.qlik.com/t5/Talend-Studio/how-to-read-the-numeric-data-from-a-tfileInputExcel-component/m-p/2327322#M96713</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Define the input field as String datatype, then use a common Java conversion method to convert to&amp;nbsp;the expected output format (Integer, Float, BigDecimal, ...).&lt;/P&gt;
&lt;P&gt;You can define your own conversion method using a routine or if you don't have to reuse it elsewhere, you can do it using a single tJavaRow component.&lt;/P&gt;
&lt;P&gt;Google will help you to find the desired conversoin Java code.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Mar 2018 07:57:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/how-to-read-the-numeric-data-from-a-tfileInputExcel-component/m-p/2327322#M96713</guid>
      <dc:creator>TRF</dc:creator>
      <dc:date>2018-03-22T07:57:14Z</dc:date>
    </item>
    <item>
      <title>Re: how to read the numeric data from a tfileInputExcel component column. the column contains string as well as numbers</title>
      <link>https://community.qlik.com/t5/Talend-Studio/how-to-read-the-numeric-data-from-a-tfileInputExcel-component/m-p/2327323#M96714</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt; 
&lt;P&gt;Thanks for your reply can you please share the sample job design for this, bcz i ma new to talend i wrote the code to catch the numeric data from the text file but it is not working in talend environment. my tjavarow code is&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="1.png" style="width: 755px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009Lsxr.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/153142i439D86CA654600D6/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009Lsxr.png" alt="0683p000009Lsxr.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt; 
&lt;P&gt;mastan&lt;/P&gt;</description>
      <pubDate>Thu, 22 Mar 2018 08:04:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/how-to-read-the-numeric-data-from-a-tfileInputExcel-component/m-p/2327323#M96714</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-03-22T08:04:51Z</dc:date>
    </item>
    <item>
      <title>Re: how to read the numeric data from a tfileInputExcel component column. the column contains string as well as numbers</title>
      <link>https://community.qlik.com/t5/Talend-Studio/how-to-read-the-numeric-data-from-a-tfileInputExcel-component/m-p/2327324#M96715</link>
      <description>&lt;P&gt;General design should be like this:&lt;/P&gt; 
&lt;P&gt;tFileInputExcel--&amp;gt;tJavaRow (or tMap)--&amp;gt;tLogRow (or anything else)&lt;/P&gt; 
&lt;P&gt;In tJavaRow you'll get row&amp;nbsp;1 by 1 from Excel file so you just have to operate the conversion.&lt;/P&gt; 
&lt;P&gt;This link may help as an example&amp;nbsp;&lt;A href="https://community.qlik.com/s/feed/0D53p00007vCoTyCAK" target="_blank" rel="nofollow noopener noreferrer"&gt;https://community.talend.com/t5/Design-and-Development/How-to-check-if-some-column-has-string-value-in-it/td-p/94891&lt;/A&gt; but you can find many others from Google.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Mar 2018 08:33:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/how-to-read-the-numeric-data-from-a-tfileInputExcel-component/m-p/2327324#M96715</guid>
      <dc:creator>TRF</dc:creator>
      <dc:date>2018-03-22T08:33:55Z</dc:date>
    </item>
    <item>
      <title>Re: how to read the numeric data from a tfileInputExcel component column. the column contains string as well as numbers</title>
      <link>https://community.qlik.com/t5/Talend-Studio/how-to-read-the-numeric-data-from-a-tfileInputExcel-component/m-p/2327325#M96716</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;thanks for your quick reply, but actually my requirement is capturing the numerical data from the input field. but the input field having the text and numeric data combined like the text file..i as sending the sample input and output pics..&lt;/P&gt; 
&lt;P&gt;Sample Output:&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="4.png" style="width: 741px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009Lt1F.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/134512i580F94C34758EF5F/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009Lt1F.png" alt="0683p000009Lt1F.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pharma2.png" style="width: 493px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LtAa.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/127732i7CA9EB6DEA3B21E4/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LtAa.png" alt="0683p000009LtAa.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;Sample Input:&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2.png" style="width: 855px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009Lt7G.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/151788i49FE47FF122BA543/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009Lt7G.png" alt="0683p000009Lt7G.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="3.png" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LtAk.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/134155i6D28DCDE8CC1729E/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LtAk.png" alt="0683p000009LtAk.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;Please tell me one solution to achieve this output.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt; 
&lt;P&gt;Mastanaiah Shaik&lt;/P&gt;</description>
      <pubDate>Thu, 22 Mar 2018 09:52:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/how-to-read-the-numeric-data-from-a-tfileInputExcel-component/m-p/2327325#M96716</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-03-22T09:52:01Z</dc:date>
    </item>
  </channel>
</rss>

