<?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: Restrict the dates in load script in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Restrict-the-dates-in-load-script/m-p/1418967#M803274</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for it, works now using this &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 06 Nov 2017 15:35:03 GMT</pubDate>
    <dc:creator>0li5a3a</dc:creator>
    <dc:date>2017-11-06T15:35:03Z</dc:date>
    <item>
      <title>Restrict the dates in load script</title>
      <link>https://community.qlik.com/t5/QlikView/Restrict-the-dates-in-load-script/m-p/1418964#M803268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could someone help me to display only the&lt;/P&gt;&lt;P&gt;A:&lt;/P&gt;&lt;P&gt;ID, DATE, MESSAGE&lt;/P&gt;&lt;P&gt;1,10/11/2012 12:00:56, YES&lt;/P&gt;&lt;P&gt;1,10/11/2012 12:04:43, NO&lt;/P&gt;&lt;P&gt;1,10/11/2012 13:10:02,YES&lt;/P&gt;&lt;P&gt;2,&lt;SPAN style="font-size: 13.3333px;"&gt;113/11/2012 13:11:02,YES&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;2,&lt;SPAN style="font-size: 13.3333px;"&gt;11/11/2012 13:15:02,YES&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;2,&lt;SPAN style="font-size: 13.3333px;"&gt;12/11/2012 14:20:02,YES&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;And I want to create something like this:&lt;/P&gt;&lt;P&gt;ID, DATE, MESSAGE&lt;/P&gt;&lt;P&gt;1, 10/11/2012 13:10:02, YES,&lt;/P&gt;&lt;P&gt;2, 12/11/2012 14:20:02, YES&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need only the last time when ticket was updated to be displayed in a streight table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried to use the Max(DATE) in the chart to sort them but I want to restrict the data from the load script. Any advises?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thansk in advance!&lt;/P&gt;&lt;P&gt;C&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Restrict-the-dates-in-load-script/m-p/1418964#M803268</guid>
      <dc:creator>0li5a3a</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Restrict the dates in load script</title>
      <link>https://community.qlik.com/t5/QlikView/Restrict-the-dates-in-load-script/m-p/1418965#M803270</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Fact:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD ID,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DATE,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MESSAGE&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM ....&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Right Join (Fact)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD ID,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Max(DATE) as DATE&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Resident Fact&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Group By ID;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Nov 2017 14:18:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Restrict-the-dates-in-load-script/m-p/1418965#M803270</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-11-06T14:18:13Z</dc:date>
    </item>
    <item>
      <title>Re: Restrict the dates in load script</title>
      <link>https://community.qlik.com/t5/QlikView/Restrict-the-dates-in-load-script/m-p/1418966#M803272</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A:&lt;/P&gt;&lt;P&gt;LOAD * Inline&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;ID, DATE, MESSAGE&lt;/P&gt;&lt;P&gt;1,10/11/2012 12:00:56, YES&lt;/P&gt;&lt;P&gt;1,10/11/2012 12:04:43, NO&lt;/P&gt;&lt;P&gt;1,10/11/2012 13:10:02,YES&lt;/P&gt;&lt;P&gt;2,13/11/2012 13:11:02,YES&lt;/P&gt;&lt;P&gt;2,11/11/2012 13:15:02,YES&lt;/P&gt;&lt;P&gt;2,12/11/2012 14:20:02,YES&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FirstSortedValue:&lt;/P&gt;&lt;P&gt;LOAD ID,&lt;/P&gt;&lt;P&gt;FirstSortedValue(DATE, -DATE) as Date,&lt;/P&gt;&lt;P&gt;FirstSortedValue(MESSAGE, -DATE) as Message Resident A Group By ID;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Nov 2017 14:28:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Restrict-the-dates-in-load-script/m-p/1418966#M803272</guid>
      <dc:creator>jpenuliar</dc:creator>
      <dc:date>2017-11-06T14:28:32Z</dc:date>
    </item>
    <item>
      <title>Re: Restrict the dates in load script</title>
      <link>https://community.qlik.com/t5/QlikView/Restrict-the-dates-in-load-script/m-p/1418967#M803274</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for it, works now using this &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Nov 2017 15:35:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Restrict-the-dates-in-load-script/m-p/1418967#M803274</guid>
      <dc:creator>0li5a3a</dc:creator>
      <dc:date>2017-11-06T15:35:03Z</dc:date>
    </item>
  </channel>
</rss>

