<?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: Date Scenario how can handle this in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Date-Scenario-how-can-handle-this/m-p/2252320#M35998</link>
    <description>&lt;P&gt;This means your data is null. You will have to handle nulls as well. Add something like....&lt;/P&gt;&lt;PRE&gt;row.Column!=null ? {your processing code} : {your response if the column is null}&lt;/PRE&gt;</description>
    <pubDate>Wed, 10 Oct 2018 15:13:04 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2018-10-10T15:13:04Z</dc:date>
    <item>
      <title>Date Scenario how can handle this</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Date-Scenario-how-can-handle-this/m-p/2252315#M35993</link>
      <description>&lt;P&gt;hello everyone,&amp;nbsp;&lt;/P&gt;&lt;P&gt;how can i handle this type of date format,&lt;/P&gt;&lt;P&gt;i want to split it on 3 files like&amp;nbsp;&lt;/P&gt;&lt;P&gt;26 Dec 1955 ---&amp;gt; dd MMM yyyy --&amp;gt;||File 1&lt;/P&gt;&lt;P&gt;1944--&amp;gt; yyyy --&amp;gt;||File 2&lt;/P&gt;&lt;P&gt;Circa 1996 ---&amp;gt; file 3&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the original data is same as&amp;nbsp; like this:-&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Date Of Birth&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;26 Dec 1955&lt;/P&gt;&lt;P&gt;26 Dec 1955&lt;/P&gt;&lt;P&gt;26 Dec 1955&lt;/P&gt;&lt;P&gt;26 Dec 1955&lt;/P&gt;&lt;P&gt;1944&lt;/P&gt;&lt;P&gt;1945&lt;/P&gt;&lt;P&gt;1955&lt;/P&gt;&lt;P&gt;Circa 1996&lt;/P&gt;&lt;P&gt;Circa 1996&lt;/P&gt;&lt;P&gt;Circa 1996&lt;/P&gt;&lt;P&gt;Circa 1996&lt;/P&gt;&lt;P&gt;Circa 1996&lt;/P&gt;</description>
      <pubDate>Wed, 10 Oct 2018 10:50:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Date-Scenario-how-can-handle-this/m-p/2252315#M35993</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-10-10T10:50:55Z</dc:date>
    </item>
    <item>
      <title>Re: Date Scenario how can handle this</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Date-Scenario-how-can-handle-this/m-p/2252316#M35994</link>
      <description>&lt;P&gt;An easy way would be to use a tMap with 3 outputs (Circa_out, Year_out and Date_out). If the String value containing the date is 4 characters long, it must be the Date_out. If the String contains "Circa" it is the Circa_out. Otherwise it is the Date_out. You can use the output filters in the tMap to calculate this.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Oct 2018 11:05:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Date-Scenario-how-can-handle-this/m-p/2252316#M35994</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-10-10T11:05:39Z</dc:date>
    </item>
    <item>
      <title>Re: Date Scenario how can handle this</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Date-Scenario-how-can-handle-this/m-p/2252317#M35995</link>
      <description>&lt;P&gt;thanks sir, it works, but in "circa" filter is not working,&amp;nbsp;&lt;/P&gt;&lt;P&gt;what can i do in find "circa 1955" values?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Oct 2018 11:58:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Date-Scenario-how-can-handle-this/m-p/2252317#M35995</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-10-10T11:58:29Z</dc:date>
    </item>
    <item>
      <title>Re: Date Scenario how can handle this</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Date-Scenario-how-can-handle-this/m-p/2252318#M35996</link>
      <description>&lt;P&gt;You can use something like....&lt;/P&gt;&lt;PRE&gt;row.Column.toUpperCase().indexOf("CIRCA")&amp;gt;-1&lt;/PRE&gt;&lt;P&gt;.....to solve this&lt;/P&gt;</description>
      <pubDate>Wed, 10 Oct 2018 12:02:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Date-Scenario-how-can-handle-this/m-p/2252318#M35996</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-10-10T12:02:20Z</dc:date>
    </item>
    <item>
      <title>Re: Date Scenario how can handle this</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Date-Scenario-how-can-handle-this/m-p/2252319#M35997</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It's not working, gives some error "Exception in component tMap_2 (date_function2)&lt;BR /&gt;java.lang.NullPointerException"&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Oct 2018 14:58:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Date-Scenario-how-can-handle-this/m-p/2252319#M35997</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-10-10T14:58:15Z</dc:date>
    </item>
    <item>
      <title>Re: Date Scenario how can handle this</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Date-Scenario-how-can-handle-this/m-p/2252320#M35998</link>
      <description>&lt;P&gt;This means your data is null. You will have to handle nulls as well. Add something like....&lt;/P&gt;&lt;PRE&gt;row.Column!=null ? {your processing code} : {your response if the column is null}&lt;/PRE&gt;</description>
      <pubDate>Wed, 10 Oct 2018 15:13:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Date-Scenario-how-can-handle-this/m-p/2252320#M35998</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-10-10T15:13:04Z</dc:date>
    </item>
  </channel>
</rss>

