<?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: Finding the newest value in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Finding-the-newest-value/m-p/373955#M494119</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok according to sunil example. You want to see D value as null even there is no data for that at max date . If this in the case you need uncheck Supress zero values in Presentation tab.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 30 Apr 2012 12:16:08 GMT</pubDate>
    <dc:creator>jagannalla</dc:creator>
    <dc:date>2012-04-30T12:16:08Z</dc:date>
    <item>
      <title>Finding the newest value</title>
      <link>https://community.qlik.com/t5/QlikView/Finding-the-newest-value/m-p/373950#M494114</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a simple table consisting of 3 fields (Container, Status and reload date). Every day the table is expanded with an extra day.&lt;/P&gt;&lt;P&gt;I would like to make a object that shows me the newest status for each container. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See attached file for details. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The result should be:&lt;/P&gt;&lt;P&gt;Container&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Status&lt;/P&gt;&lt;P&gt;A&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; 1&lt;/P&gt;&lt;P&gt;B&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; 3&lt;/P&gt;&lt;P&gt;C&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; 4&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR&lt;/P&gt;&lt;P&gt;Jakob Hjorth-Hansen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2012 08:39:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Finding-the-newest-value/m-p/373950#M494114</guid>
      <dc:creator />
      <dc:date>2012-04-30T08:39:21Z</dc:date>
    </item>
    <item>
      <title>Re: Finding the newest value</title>
      <link>https://community.qlik.com/t5/QlikView/Finding-the-newest-value/m-p/373951#M494115</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Create a variable &lt;/P&gt;&lt;P&gt;vlastReload=max([Reload date]) in control+alt+v&lt;/P&gt;&lt;P&gt;in expression you can write below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;maxstring(if([Reload date]=vlastReload,Status))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;see the attached file&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2012 09:04:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Finding-the-newest-value/m-p/373951#M494115</guid>
      <dc:creator>SunilChauhan</dc:creator>
      <dc:date>2012-04-30T09:04:29Z</dc:date>
    </item>
    <item>
      <title>Finding the newest value</title>
      <link>https://community.qlik.com/t5/QlikView/Finding-the-newest-value/m-p/373952#M494116</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can try this expression.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=max({&amp;lt;[Reload date]={"=MaxString([Reload date])"}&amp;gt;} Status)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2012 09:28:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Finding-the-newest-value/m-p/373952#M494116</guid>
      <dc:creator>jagannalla</dc:creator>
      <dc:date>2012-04-30T09:28:36Z</dc:date>
    </item>
    <item>
      <title>Finding the newest value</title>
      <link>https://community.qlik.com/t5/QlikView/Finding-the-newest-value/m-p/373953#M494117</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jagan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for the answer but your formula doesn't give me the correct answer.&lt;/P&gt;&lt;P&gt;I expect:&lt;/P&gt;&lt;P&gt;A 1&lt;/P&gt;&lt;P&gt;B 3&lt;/P&gt;&lt;P&gt;C 4&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but I get&lt;/P&gt;&lt;P&gt;A 2&lt;/P&gt;&lt;P&gt;B 3&lt;/P&gt;&lt;P&gt;B 4&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;seems like it takes the highest value?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/Jakob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2012 11:26:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Finding-the-newest-value/m-p/373953#M494117</guid>
      <dc:creator />
      <dc:date>2012-04-30T11:26:28Z</dc:date>
    </item>
    <item>
      <title>Re: Finding the newest value</title>
      <link>https://community.qlik.com/t5/QlikView/Finding-the-newest-value/m-p/373954#M494118</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for the answer - it works, but I was not specific enough.&lt;/P&gt;&lt;P&gt;There can be a situation where the container is no longer in the list, but I still want to see the value from when it was uploaded last time.&lt;/P&gt;&lt;P&gt;I have added a container D to my example, where the last update was on the 28th. I still need to see it on my list with status 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your interest.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR.&lt;/P&gt;&lt;P&gt;Jakob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2012 11:31:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Finding-the-newest-value/m-p/373954#M494118</guid>
      <dc:creator />
      <dc:date>2012-04-30T11:31:11Z</dc:date>
    </item>
    <item>
      <title>Re: Finding the newest value</title>
      <link>https://community.qlik.com/t5/QlikView/Finding-the-newest-value/m-p/373955#M494119</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok according to sunil example. You want to see D value as null even there is no data for that at max date . If this in the case you need uncheck Supress zero values in Presentation tab.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2012 12:16:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Finding-the-newest-value/m-p/373955#M494119</guid>
      <dc:creator>jagannalla</dc:creator>
      <dc:date>2012-04-30T12:16:08Z</dc:date>
    </item>
    <item>
      <title>Re: Finding the newest value</title>
      <link>https://community.qlik.com/t5/QlikView/Finding-the-newest-value/m-p/373956#M494120</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;EM style="font-family: trebuchet ms,geneva;"&gt;Jakob - Instead of following Set Analysis approach you can solve this by using &lt;SPAN style="color: #000080;"&gt;&lt;STRONG&gt;FirstSortedValue &lt;/STRONG&gt;&lt;/SPAN&gt;function. Here is what you need...&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000080;"&gt;&lt;STRONG&gt;&lt;EM style="font-family: trebuchet ms,geneva;"&gt;FirstSortedValue( Status, -[Reload date])&lt;/EM&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-family: trebuchet ms,geneva;"&gt;I have used the minus sign before [Reload date] to sort in desc order or last sorted value instead of first sorted value.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-family: trebuchet ms,geneva;"&gt;I understand itss hard - not to think of Set Analysis but sometimes we need to step back to get things working.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-family: trebuchet ms,geneva;"&gt;I hope this helps!&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-family: trebuchet ms,geneva;"&gt;Cheers,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-family: trebuchet ms,geneva;"&gt;DV&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-family: trebuchet ms,geneva;"&gt;&lt;A href="http://qlikshare.com"&gt;www.QlikShare.com&lt;/A&gt;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 May 2012 15:21:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Finding-the-newest-value/m-p/373956#M494120</guid>
      <dc:creator>IAMDV</dc:creator>
      <dc:date>2012-05-01T15:21:50Z</dc:date>
    </item>
    <item>
      <title>Re: Finding the newest value</title>
      <link>https://community.qlik.com/t5/QlikView/Finding-the-newest-value/m-p/373957#M494121</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hi DV,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Simple and easy. Thanks.&lt;/P&gt;&lt;P&gt;/Jakob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 May 2012 18:25:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Finding-the-newest-value/m-p/373957#M494121</guid>
      <dc:creator />
      <dc:date>2012-05-01T18:25:46Z</dc:date>
    </item>
    <item>
      <title>Re: Finding the newest value</title>
      <link>https://community.qlik.com/t5/QlikView/Finding-the-newest-value/m-p/373958#M494122</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;EM&gt;Jakob - Very soon, I'm going to make a video post on FirstSortedValue. Is it okay to use this example for demonstration?&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Thanks,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;DV&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-family: trebuchet ms,geneva;"&gt;&lt;A class="jive-link-external-small" href="http://qlikshare.com/"&gt;www.QlikShare.com&lt;/A&gt;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 May 2012 18:37:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Finding-the-newest-value/m-p/373958#M494122</guid>
      <dc:creator>IAMDV</dc:creator>
      <dc:date>2012-05-01T18:37:16Z</dc:date>
    </item>
    <item>
      <title>Re: Finding the newest value</title>
      <link>https://community.qlik.com/t5/QlikView/Finding-the-newest-value/m-p/373959#M494123</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; No problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 May 2012 18:43:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Finding-the-newest-value/m-p/373959#M494123</guid>
      <dc:creator />
      <dc:date>2012-05-01T18:43:58Z</dc:date>
    </item>
    <item>
      <title>Re: Finding the newest value</title>
      <link>https://community.qlik.com/t5/QlikView/Finding-the-newest-value/m-p/373960#M494124</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;D V,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your blog is really good. Today i learned the concept of &lt;SPAN style="color: #000080;"&gt;&lt;STRONG&gt;&lt;EM style="font-family: trebuchet ms,geneva;"&gt;FirstSortedValue,&lt;/EM&gt;&lt;/STRONG&gt;&lt;/SPAN&gt; Thanks to share with us.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 May 2012 08:48:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Finding-the-newest-value/m-p/373960#M494124</guid>
      <dc:creator>jagannalla</dc:creator>
      <dc:date>2012-05-02T08:48:44Z</dc:date>
    </item>
    <item>
      <title>Re: Finding the newest value</title>
      <link>https://community.qlik.com/t5/QlikView/Finding-the-newest-value/m-p/373961#M494125</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;EM&gt;Jagan,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;SPAN&gt;Thank you for the kind words. I'm glad you have learnt something new. Please can you email me directly at &lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:dvadithala@gmail.com"&gt;dvadithala@gmail.com&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Cheers - DV&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 May 2012 08:55:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Finding-the-newest-value/m-p/373961#M494125</guid>
      <dc:creator>IAMDV</dc:creator>
      <dc:date>2012-05-02T08:55:52Z</dc:date>
    </item>
    <item>
      <title>Re: Finding the newest value</title>
      <link>https://community.qlik.com/t5/QlikView/Finding-the-newest-value/m-p/373962#M494126</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have seen your site many times and I have learnt so much from there. what a Gr8 work you are doing &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks to sharing&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- IndianQvLover&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 May 2012 11:02:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Finding-the-newest-value/m-p/373962#M494126</guid>
      <dc:creator />
      <dc:date>2012-05-02T11:02:13Z</dc:date>
    </item>
    <item>
      <title>Re: Finding the newest value</title>
      <link>https://community.qlik.com/t5/QlikView/Finding-the-newest-value/m-p/373963#M494127</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri,verdana,arial,sans-serif;"&gt;Jakob &amp;amp; All - I understand that we have already got this working by FirstSortedValue() function. But I thought it will be good to use Set Analysis with Indirect Analysis. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM style="font-family: calibri,verdana,arial,sans-serif;"&gt;MaxString({&amp;lt;[Reload date] = (P({&amp;lt;Status ={$(=max(Status))} &amp;gt;}))&amp;gt;} Status)&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri,verdana,arial,sans-serif;"&gt;Cheers,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri,verdana,arial,sans-serif;"&gt;DV&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2012 10:58:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Finding-the-newest-value/m-p/373963#M494127</guid>
      <dc:creator>IAMDV</dc:creator>
      <dc:date>2012-05-22T10:58:00Z</dc:date>
    </item>
  </channel>
</rss>

