<?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: loading script + how to load data with date data only ? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/loading-script-how-to-load-data-with-date-data-only/m-p/1439044#M431977</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sometimes data is not always null. So if there are any spaces or empty values Trim() will remove those extra spaces and Len() will count if there is any data. If there is a data then Len() will give you the size of that field value. So used Len() &amp;gt; 0 will return all the valid data. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 29 Sep 2017 02:33:43 GMT</pubDate>
    <dc:creator>vishsaggi</dc:creator>
    <dc:date>2017-09-29T02:33:43Z</dc:date>
    <item>
      <title>loading script + how to load data with date data only ?</title>
      <link>https://community.qlik.com/t5/QlikView/loading-script-how-to-load-data-with-date-data-only/m-p/1439040#M431973</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to load in a data set. there is a date field, some rows of data have a empty/null value. so i do not want to load in those particular rows with the date field data is empty or now??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can i write.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load&lt;/P&gt;&lt;P&gt;ID ,&lt;/P&gt;&lt;P&gt;planned_date&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where planned_date &amp;lt;&amp;gt; null() ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;will this where clause work as well???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Sep 2017 02:25:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/loading-script-how-to-load-data-with-date-data-only/m-p/1439040#M431973</guid>
      <dc:creator>jim_chan</dc:creator>
      <dc:date>2017-09-29T02:25:12Z</dc:date>
    </item>
    <item>
      <title>Re: loading script + how to load data with date data only ?</title>
      <link>https://community.qlik.com/t5/QlikView/loading-script-how-to-load-data-with-date-data-only/m-p/1439041#M431974</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, you can try that or like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;load&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;ID ,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;planned_date&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;where &lt;STRONG&gt;Len(Trim(planned_date)) &amp;gt; 0&lt;/STRONG&gt; ;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Sep 2017 02:27:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/loading-script-how-to-load-data-with-date-data-only/m-p/1439041#M431974</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2017-09-29T02:27:01Z</dc:date>
    </item>
    <item>
      <title>Re: loading script + how to load data with date data only ?</title>
      <link>https://community.qlik.com/t5/QlikView/loading-script-how-to-load-data-with-date-data-only/m-p/1439042#M431975</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Vish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;mind to tell me whats the different???? in short &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt; ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Sep 2017 02:29:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/loading-script-how-to-load-data-with-date-data-only/m-p/1439042#M431975</guid>
      <dc:creator>jim_chan</dc:creator>
      <dc:date>2017-09-29T02:29:40Z</dc:date>
    </item>
    <item>
      <title>Re: loading script + how to load data with date data only ?</title>
      <link>https://community.qlik.com/t5/QlikView/loading-script-how-to-load-data-with-date-data-only/m-p/1439043#M431976</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Vish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what if i want to load in data rows that has EMPTY date field data?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is it gonna be &lt;STRONG&gt;Len(Trim(planned_date)) &amp;lt; 0 ?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jim&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Sep 2017 02:32:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/loading-script-how-to-load-data-with-date-data-only/m-p/1439043#M431976</guid>
      <dc:creator>jim_chan</dc:creator>
      <dc:date>2017-09-29T02:32:36Z</dc:date>
    </item>
    <item>
      <title>Re: loading script + how to load data with date data only ?</title>
      <link>https://community.qlik.com/t5/QlikView/loading-script-how-to-load-data-with-date-data-only/m-p/1439044#M431977</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sometimes data is not always null. So if there are any spaces or empty values Trim() will remove those extra spaces and Len() will count if there is any data. If there is a data then Len() will give you the size of that field value. So used Len() &amp;gt; 0 will return all the valid data. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Sep 2017 02:33:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/loading-script-how-to-load-data-with-date-data-only/m-p/1439044#M431977</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2017-09-29T02:33:43Z</dc:date>
    </item>
    <item>
      <title>Re: loading script + how to load data with date data only ?</title>
      <link>https://community.qlik.com/t5/QlikView/loading-script-how-to-load-data-with-date-data-only/m-p/1439045#M431978</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It will not return any rows if you use that. Cos Len(Trim(EmptyData)) is always 0 so if you use &amp;lt; 0 the condition fails and it will not return any rows. If you want empty rows to be pulled use = 0. If you dont want to pull empty rows use Len(Trim(plannedDate)) &amp;gt; 0. Hope you got it. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Sep 2017 02:39:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/loading-script-how-to-load-data-with-date-data-only/m-p/1439045#M431978</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2017-09-29T02:39:39Z</dc:date>
    </item>
  </channel>
</rss>

