<?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: Check null for a column having integer datatype and Replace with some number or &amp;quot;undefined&amp;quot; in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Check-null-for-a-column-having-integer-datatype-and-Replace-with/m-p/2221040#M15195</link>
    <description>if you want to have Integer and Strings (undefined) on the same column… all your data will be String&lt;BR /&gt;"0"&lt;BR /&gt;"1"&lt;BR /&gt;"undefined"&lt;BR /&gt;…&lt;BR /&gt;&lt;BR /&gt;if your input column can be null it's an Integer (object (not an int)) so you have to convert it to String.&lt;BR /&gt;&lt;BR /&gt;(row1.test==null)?"undefined" :row1.test.toString()&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Thu, 27 Sep 2018 09:33:03 GMT</pubDate>
    <dc:creator>fdenis</dc:creator>
    <dc:date>2018-09-27T09:33:03Z</dc:date>
    <item>
      <title>Check null for a column having integer datatype and Replace with some number or "undefined"</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Check-null-for-a-column-having-integer-datatype-and-Replace-with/m-p/2221038#M15193</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have columns in my&amp;nbsp; data which has some null values and want to replace it with some integer value such as &lt;STRONG&gt;0&lt;/STRONG&gt;. and other null values with &lt;STRONG&gt;undefined.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;like for string we do it like :&amp;nbsp;&lt;/P&gt;
&lt;P&gt;row1.test==null ||&lt;/P&gt;
&lt;P&gt;row1.test==null?"undefined" :row1.test1&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Want it for &lt;STRONG&gt;int&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;</description>
      <pubDate>Wed, 26 Sep 2018 14:11:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Check-null-for-a-column-having-integer-datatype-and-Replace-with/m-p/2221038#M15193</guid>
      <dc:creator>sbxr</dc:creator>
      <dc:date>2018-09-26T14:11:17Z</dc:date>
    </item>
    <item>
      <title>Re: Check null for a column having integer datatype and Replace with some number or "undefined"</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Check-null-for-a-column-having-integer-datatype-and-Replace-with/m-p/2221039#M15194</link>
      <description>&lt;PRE&gt;row1.test == null ? "Undefined" : Integer.toString(row1.test)&lt;/PRE&gt;</description>
      <pubDate>Wed, 26 Sep 2018 14:47:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Check-null-for-a-column-having-integer-datatype-and-Replace-with/m-p/2221039#M15194</guid>
      <dc:creator>TRF</dc:creator>
      <dc:date>2018-09-26T14:47:05Z</dc:date>
    </item>
    <item>
      <title>Re: Check null for a column having integer datatype and Replace with some number or "undefined"</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Check-null-for-a-column-having-integer-datatype-and-Replace-with/m-p/2221040#M15195</link>
      <description>if you want to have Integer and Strings (undefined) on the same column… all your data will be String&lt;BR /&gt;"0"&lt;BR /&gt;"1"&lt;BR /&gt;"undefined"&lt;BR /&gt;…&lt;BR /&gt;&lt;BR /&gt;if your input column can be null it's an Integer (object (not an int)) so you have to convert it to String.&lt;BR /&gt;&lt;BR /&gt;(row1.test==null)?"undefined" :row1.test.toString()&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 27 Sep 2018 09:33:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Check-null-for-a-column-having-integer-datatype-and-Replace-with/m-p/2221040#M15195</guid>
      <dc:creator>fdenis</dc:creator>
      <dc:date>2018-09-27T09:33:03Z</dc:date>
    </item>
    <item>
      <title>Re: Check null for a column having integer datatype and Replace with some number or "undefined"</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Check-null-for-a-column-having-integer-datatype-and-Replace-with/m-p/2221041#M15196</link>
      <description>&lt;P&gt;Did this help?&lt;/P&gt;&lt;P&gt;If so, thank's to mark your case as solved (Kudos also accepted).&lt;/P&gt;</description>
      <pubDate>Thu, 27 Sep 2018 09:41:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Check-null-for-a-column-having-integer-datatype-and-Replace-with/m-p/2221041#M15196</guid>
      <dc:creator>TRF</dc:creator>
      <dc:date>2018-09-27T09:41:44Z</dc:date>
    </item>
    <item>
      <title>Re: Check null for a column having integer datatype and Replace with some number or "undefined"</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Check-null-for-a-column-having-integer-datatype-and-Replace-with/m-p/2221042#M15197</link>
      <description>&lt;P&gt;Yes it is working as I wanted ..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much..&lt;/P&gt;</description>
      <pubDate>Thu, 27 Sep 2018 11:56:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Check-null-for-a-column-having-integer-datatype-and-Replace-with/m-p/2221042#M15197</guid>
      <dc:creator>sbxr</dc:creator>
      <dc:date>2018-09-27T11:56:11Z</dc:date>
    </item>
    <item>
      <title>Re: Check null for a column having integer datatype and Replace with some number or "undefined"</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Check-null-for-a-column-having-integer-datatype-and-Replace-with/m-p/2221043#M15198</link>
      <description>&lt;P&gt;&lt;A href="https://community.qlik.com/s/profile/0053p000007LLYpAAO"&gt;@sbxr&lt;/A&gt;, so you could validate the 1rst answer, not the 2nd one which is just a copy of the previous one.&lt;/P&gt;
&lt;P&gt;When you help someone, do you like that the thanks go to someone else than you?&lt;/P&gt;
&lt;P&gt;I don't!&lt;/P&gt;</description>
      <pubDate>Thu, 27 Sep 2018 12:19:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Check-null-for-a-column-having-integer-datatype-and-Replace-with/m-p/2221043#M15198</guid>
      <dc:creator>TRF</dc:creator>
      <dc:date>2018-09-27T12:19:45Z</dc:date>
    </item>
    <item>
      <title>Re: Check null for a column having integer datatype and Replace with some number or "undefined"</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Check-null-for-a-column-having-integer-datatype-and-Replace-with/m-p/2221044#M15199</link>
      <description>&lt;P&gt;Yes you are right&amp;nbsp;&lt;A href="https://community.qlik.com/s/profile/0053p000007LKj7AAG"&gt;@TRF&lt;/A&gt; ..&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;my thank you is for every one in general..&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Pardon me and respect&lt;/P&gt; 
&lt;P&gt;&lt;A href="https://community.qlik.com/s/profile/0053p000007LLYpAAO"&gt;@sbxr&lt;/A&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Sep 2018 12:36:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Check-null-for-a-column-having-integer-datatype-and-Replace-with/m-p/2221044#M15199</guid>
      <dc:creator>sbxr</dc:creator>
      <dc:date>2018-09-27T12:36:51Z</dc:date>
    </item>
  </channel>
</rss>

