<?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: Only values associated with most current loaded date in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Only-values-associated-with-most-current-loaded-date/m-p/500635#M557762</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This worked fine in the charts, thanks! Do you also have an idea how this can be achieved in the script?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 26 Jun 2013 14:40:01 GMT</pubDate>
    <dc:creator>ingoniclas</dc:creator>
    <dc:date>2013-06-26T14:40:01Z</dc:date>
    <item>
      <title>Only values associated with most current loaded date</title>
      <link>https://community.qlik.com/t5/QlikView/Only-values-associated-with-most-current-loaded-date/m-p/500631#M557758</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am desperately looking for a solution to this issue: I want to filter only for those values associated with the most current loaded date. For example when 1st March 2013 ist the most current date loaded, I want to filter for only those values associated with this date. The result should look like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;date&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; value&lt;/P&gt;&lt;P&gt;01-03-2013&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; A&lt;/P&gt;&lt;P&gt;01-03-2013&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; C...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried it with max(date) and firstsortedvalue(date,-date), but this brings up ALL values with their most current dates like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;date&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; value&lt;/P&gt;&lt;P&gt;01-03-2013&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; A&lt;/P&gt;&lt;P&gt;01-01-2013&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; B&lt;/P&gt;&lt;P&gt;01-03-2013&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; C...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone know how to solve this issue in script or charts? Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Jun 2013 10:34:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Only-values-associated-with-most-current-loaded-date/m-p/500631#M557758</guid>
      <dc:creator>ingoniclas</dc:creator>
      <dc:date>2013-06-24T10:34:33Z</dc:date>
    </item>
    <item>
      <title>Re: Only values associated with most current loaded date</title>
      <link>https://community.qlik.com/t5/QlikView/Only-values-associated-with-most-current-loaded-date/m-p/500632#M557759</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;=if( max(Date) = max(ALL Date), 1, 0)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Jun 2013 10:37:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Only-values-associated-with-most-current-loaded-date/m-p/500632#M557759</guid>
      <dc:creator>luciancotea</dc:creator>
      <dc:date>2013-06-24T10:37:34Z</dc:date>
    </item>
    <item>
      <title>Re: Only values associated with most current loaded date</title>
      <link>https://community.qlik.com/t5/QlikView/Only-values-associated-with-most-current-loaded-date/m-p/500633#M557760</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could create a variable vMaxDate: =max({1} date) &lt;/P&gt;&lt;P&gt;Then you can use the variable in expressions. For example sum({&amp;lt;date={'$(vMaxDate)'}&amp;gt;} value)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Jun 2013 10:40:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Only-values-associated-with-most-current-loaded-date/m-p/500633#M557760</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2013-06-24T10:40:33Z</dc:date>
    </item>
    <item>
      <title>Re: Only values associated with most current loaded date</title>
      <link>https://community.qlik.com/t5/QlikView/Only-values-associated-with-most-current-loaded-date/m-p/500634#M557761</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks. That sounds very good. Where and how do you have to put in that statement? I tried to add &lt;STRONG&gt;Let &lt;/STRONG&gt;vMaxDate =max({1} date) right after the system variables but it doesn't work this way. Unfortunately, I am not so familiar with variables, can you help? Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Jun 2013 14:38:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Only-values-associated-with-most-current-loaded-date/m-p/500634#M557761</guid>
      <dc:creator>ingoniclas</dc:creator>
      <dc:date>2013-06-26T14:38:27Z</dc:date>
    </item>
    <item>
      <title>Re: Only values associated with most current loaded date</title>
      <link>https://community.qlik.com/t5/QlikView/Only-values-associated-with-most-current-loaded-date/m-p/500635#M557762</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This worked fine in the charts, thanks! Do you also have an idea how this can be achieved in the script?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Jun 2013 14:40:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Only-values-associated-with-most-current-loaded-date/m-p/500635#M557762</guid>
      <dc:creator>ingoniclas</dc:creator>
      <dc:date>2013-06-26T14:40:01Z</dc:date>
    </item>
  </channel>
</rss>

