<?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: Null pointer exception in double datatype data. Need your inputs to fix this. in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Null-pointer-exception-in-double-datatype-data-Need-your-inputs/m-p/2348208#M115364</link>
    <description>&lt;P&gt;Hi Shong,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for the reply. Yes you are right data has null. Below is the expression.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Amount1+Amount2 in the expression&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ThankYou,&lt;/P&gt;&lt;P&gt;Sakthi&lt;/P&gt;</description>
    <pubDate>Tue, 15 Jun 2021 04:11:02 GMT</pubDate>
    <dc:creator>SSV1</dc:creator>
    <dc:date>2021-06-15T04:11:02Z</dc:date>
    <item>
      <title>Null pointer exception in double datatype data. Need your inputs to fix this.</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Null-pointer-exception-in-double-datatype-data-Need-your-inputs/m-p/2348206#M115362</link>
      <description>&lt;P&gt;Dear Talend Community,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good day to all.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Extracting amount data from spreadsheet and providing datatype as double. While i am performing some calculations it throwing "Null pointer Exception issue". &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way without ignoring the row and process the calculation. Could you please let me know fix for this issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;&lt;U&gt;Example:&lt;/U&gt;&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Amount1  Amount2      Result(Addition)&lt;/P&gt;&lt;P&gt;10.00         10.00                 20.00&lt;/P&gt;&lt;P&gt;10.00                                   10.00&lt;/P&gt;&lt;P&gt;                  10.00                 10.00&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ThankYou,&lt;/P&gt;&lt;P&gt;Sakthi&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 00:03:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Null-pointer-exception-in-double-datatype-data-Need-your-inputs/m-p/2348206#M115362</guid>
      <dc:creator>SSV1</dc:creator>
      <dc:date>2024-11-16T00:03:45Z</dc:date>
    </item>
    <item>
      <title>Re: Null pointer exception in double datatype data. Need your inputs to fix this.</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Null-pointer-exception-in-double-datatype-data-Need-your-inputs/m-p/2348207#M115363</link>
      <description>&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;There must exist Null value in source data. Can you show us the expression which you perform the calculations?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Shong&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jun 2021 02:12:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Null-pointer-exception-in-double-datatype-data-Need-your-inputs/m-p/2348207#M115363</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-06-15T02:12:20Z</dc:date>
    </item>
    <item>
      <title>Re: Null pointer exception in double datatype data. Need your inputs to fix this.</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Null-pointer-exception-in-double-datatype-data-Need-your-inputs/m-p/2348208#M115364</link>
      <description>&lt;P&gt;Hi Shong,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for the reply. Yes you are right data has null. Below is the expression.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Amount1+Amount2 in the expression&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ThankYou,&lt;/P&gt;&lt;P&gt;Sakthi&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jun 2021 04:11:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Null-pointer-exception-in-double-datatype-data-Need-your-inputs/m-p/2348208#M115364</guid>
      <dc:creator>SSV1</dc:creator>
      <dc:date>2021-06-15T04:11:02Z</dc:date>
    </item>
    <item>
      <title>Re: Null pointer exception in double datatype data. Need your inputs to fix this.</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Null-pointer-exception-in-double-datatype-data-Need-your-inputs/m-p/2348209#M115365</link>
      <description>&lt;P&gt;change the expression to:&lt;/P&gt;&lt;P&gt;row1.Amount1==null?(row1.Amount2==null?0:row1.Amount2):(row1.Amount2==null?row1.Amount1:row1.Amount1+row1.Amount2)&amp;nbsp;​&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jun 2021 06:09:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Null-pointer-exception-in-double-datatype-data-Need-your-inputs/m-p/2348209#M115365</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-06-15T06:09:01Z</dc:date>
    </item>
    <item>
      <title>Re: Null pointer exception in double datatype data. Need your inputs to fix this.</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Null-pointer-exception-in-double-datatype-data-Need-your-inputs/m-p/2348210#M115366</link>
      <description>&lt;P&gt;Hi Shong,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank You.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To handle this scenario first tmap check the column with relation null and handled it using below format.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Relational.ISNULL(columnname)?0:columnname&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;With this closing this topic. Thank you once again.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ThankYou,&lt;/P&gt;&lt;P&gt;Sakthi&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jun 2021 17:27:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Null-pointer-exception-in-double-datatype-data-Need-your-inputs/m-p/2348210#M115366</guid>
      <dc:creator>SSV1</dc:creator>
      <dc:date>2021-06-15T17:27:22Z</dc:date>
    </item>
  </channel>
</rss>

