<?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 the field based on date in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Loading-the-field-based-on-date/m-p/1718631#M54593</link>
    <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="commQV34.PNG" style="width: 316px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/35516iA44C440F5D02A385/image-size/large?v=v2&amp;amp;px=999" role="button" title="commQV34.PNG" alt="commQV34.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Sun, 14 Jun 2020 18:29:44 GMT</pubDate>
    <dc:creator>Saravanan_Desingh</dc:creator>
    <dc:date>2020-06-14T18:29:44Z</dc:date>
    <item>
      <title>Loading the field based on date</title>
      <link>https://community.qlik.com/t5/App-Development/Loading-the-field-based-on-date/m-p/1702852#M53845</link>
      <description>&lt;P&gt;I have the table which consists of order ID and Order closed date(YYYY.MM.DD),for example&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="62"&gt;&lt;P&gt;OrderID&lt;/P&gt;&lt;/TD&gt;&lt;TD width="216"&gt;&lt;P&gt;OrderClosedDate&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="62"&gt;&lt;P&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;TD width="216"&gt;&lt;P&gt;2020.05.12&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="62"&gt;&lt;P&gt;2&lt;/P&gt;&lt;/TD&gt;&lt;TD width="216"&gt;&lt;P&gt;2019.05.15&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="62"&gt;&lt;P&gt;3&lt;/P&gt;&lt;/TD&gt;&lt;TD width="216"&gt;&lt;P&gt;2016.05.17&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="62"&gt;&lt;P&gt;4&lt;/P&gt;&lt;/TD&gt;&lt;TD width="216"&gt;&lt;P&gt;2014.04.30&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="62"&gt;&lt;P&gt;5&lt;/P&gt;&lt;/TD&gt;&lt;TD width="216"&gt;&lt;P&gt;2018.05.12&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="62"&gt;&lt;P&gt;6&lt;/P&gt;&lt;/TD&gt;&lt;TD width="216"&gt;&lt;P&gt;2015.06.10&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="62"&gt;&lt;P&gt;7&lt;/P&gt;&lt;/TD&gt;&lt;TD width="216"&gt;&lt;P&gt;2018.03.08&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. I want to get the orders ID's which were closed before 2016.12.31 and&lt;/P&gt;&lt;P&gt;2. I want to get order ID's which were closed between 2017.01.01 to 2018.12.31&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried this method&lt;/P&gt;&lt;P&gt;Where OrderClosedDate &amp;lt; 2016.12.31&lt;/P&gt;&lt;P&gt;but it didn't work and I was able to view all the rows,How to overcome it?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 17 May 2020 13:07:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Loading-the-field-based-on-date/m-p/1702852#M53845</guid>
      <dc:creator>SAITEJA</dc:creator>
      <dc:date>2020-05-17T13:07:16Z</dc:date>
    </item>
    <item>
      <title>Re: Loading the field based on date</title>
      <link>https://community.qlik.com/t5/App-Development/Loading-the-field-based-on-date/m-p/1718629#M54592</link>
      <description>&lt;P&gt;Try like this in Script.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;SET DateFormat='YYYY.MM.DD';

tab1:
LOAD *, If(OrderClosedDate&amp;lt;'2016.12.31','&amp;lt;2016.12.31',If(OrderClosedDate&amp;gt;='2017.01.01' And OrderClosedDate&amp;lt;='2018.12.31','&amp;gt;=2017.01.01 &amp;amp; &amp;lt;=2018.12.31','N/A')) As Rules;
LOAD * INLINE [
    OrderID, OrderClosedDate
    1, 2020.05.12
    2, 2019.05.15
    3, 2016.05.17
    4, 2014.04.30
    5, 2018.05.12
    6, 2015.06.10
    7, 2018.03.08
];&lt;/LI-CODE&gt;</description>
      <pubDate>Sun, 14 Jun 2020 18:28:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Loading-the-field-based-on-date/m-p/1718629#M54592</guid>
      <dc:creator>Saravanan_Desingh</dc:creator>
      <dc:date>2020-06-14T18:28:50Z</dc:date>
    </item>
    <item>
      <title>Re: Loading the field based on date</title>
      <link>https://community.qlik.com/t5/App-Development/Loading-the-field-based-on-date/m-p/1718631#M54593</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="commQV34.PNG" style="width: 316px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/35516iA44C440F5D02A385/image-size/large?v=v2&amp;amp;px=999" role="button" title="commQV34.PNG" alt="commQV34.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 14 Jun 2020 18:29:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Loading-the-field-based-on-date/m-p/1718631#M54593</guid>
      <dc:creator>Saravanan_Desingh</dc:creator>
      <dc:date>2020-06-14T18:29:44Z</dc:date>
    </item>
    <item>
      <title>Re: Loading the field based on date</title>
      <link>https://community.qlik.com/t5/App-Development/Loading-the-field-based-on-date/m-p/1718644#M54598</link>
      <description>&lt;P&gt;Where you are writing or want this condition?&amp;nbsp; In script? or in Chart?&lt;/P&gt;</description>
      <pubDate>Sun, 14 Jun 2020 21:22:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Loading-the-field-based-on-date/m-p/1718644#M54598</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2020-06-14T21:22:04Z</dc:date>
    </item>
  </channel>
</rss>

