<?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 the most recent date in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/the-most-recent-date/m-p/233005#M84556</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DATE(MAX(TOTAL IF(Value &amp;lt;&amp;gt; '', Date)), 'DD/MM/YY')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 13 Oct 2010 19:24:50 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-10-13T19:24:50Z</dc:date>
    <item>
      <title>the most recent date</title>
      <link>https://community.qlik.com/t5/QlikView/the-most-recent-date/m-p/232998#M84549</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have: 'name', 'value' and 'date'&lt;/P&gt;&lt;P&gt;I want to appear only the product with the most recent date, provided that this value is not null&lt;/P&gt;&lt;P&gt;example:&lt;/P&gt;&lt;P&gt;A___565___01/03/09&lt;/P&gt;&lt;P&gt;A___null___19/11/09&lt;/P&gt;&lt;P&gt;A___120___30/02/10&lt;/P&gt;&lt;P&gt;A___null___21/05/10&lt;/P&gt;&lt;P&gt;A___null___06/08/10&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;in this case would be:&lt;/P&gt;&lt;P&gt;A___120___30/02/10&lt;/P&gt;&lt;P&gt;because the value of this product is different from 'null' and because it is the most recent&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can someone help me?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Oct 2010 19:50:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/the-most-recent-date/m-p/232998#M84549</guid>
      <dc:creator />
      <dc:date>2010-10-08T19:50:41Z</dc:date>
    </item>
    <item>
      <title>the most recent date</title>
      <link>https://community.qlik.com/t5/QlikView/the-most-recent-date/m-p/232999#M84550</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think that are a single row "A___120___30/02/10"&lt;/P&gt;&lt;P&gt;You need to use a string function to separete in three fields how you say.&lt;/P&gt;&lt;P&gt;In this case:&lt;/P&gt;&lt;P&gt;NAME: Left('A___120___30/02/10', 1)&lt;/P&gt;&lt;P&gt;VALUE: Right(Left('A___120___30/02/10', 7), 3)&lt;/P&gt;&lt;P&gt;DATE: Right('A___120___30/02/10', &lt;span class="lia-unicode-emoji" title=":smiling_face_with_sunglasses:"&gt;😎&lt;/span&gt;&lt;/P&gt;&lt;P&gt;After you can use the IF statement to show your result.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Oct 2010 20:26:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/the-most-recent-date/m-p/232999#M84550</guid>
      <dc:creator />
      <dc:date>2010-10-08T20:26:23Z</dc:date>
    </item>
    <item>
      <title>the most recent date</title>
      <link>https://community.qlik.com/t5/QlikView/the-most-recent-date/m-p/233000#M84551</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There should be a better way, but try a formula like this:&lt;/P&gt;&lt;P&gt;sum({$&amp;lt;value -= {}&amp;gt;} if(date=aggr(nodistinct max(date),name),value))&lt;/P&gt;&lt;P&gt;It doesn't have to be a sum and the set analysis "value -= {}" is to get rid of the null values.&lt;/P&gt;&lt;P&gt;Edit: This formula considers that you have more than one product name and that you want to see the latest date for each product name in a table with the dimensions product name and date.&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Oct 2010 20:46:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/the-most-recent-date/m-p/233000#M84551</guid>
      <dc:creator>pover</dc:creator>
      <dc:date>2010-10-08T20:46:42Z</dc:date>
    </item>
    <item>
      <title>the most recent date</title>
      <link>https://community.qlik.com/t5/QlikView/the-most-recent-date/m-p/233001#M84552</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See this example.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Oct 2010 21:10:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/the-most-recent-date/m-p/233001#M84552</guid>
      <dc:creator />
      <dc:date>2010-10-08T21:10:22Z</dc:date>
    </item>
    <item>
      <title>the most recent date</title>
      <link>https://community.qlik.com/t5/QlikView/the-most-recent-date/m-p/233002#M84553</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;did not work&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Oct 2010 21:27:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/the-most-recent-date/m-p/233002#M84553</guid>
      <dc:creator />
      <dc:date>2010-10-08T21:27:42Z</dc:date>
    </item>
    <item>
      <title>the most recent date</title>
      <link>https://community.qlik.com/t5/QlikView/the-most-recent-date/m-p/233003#M84554</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, but am I correct that you want a table that shows the value from the lastest date of various products or is Eduardo's solution correct?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Oct 2010 22:07:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/the-most-recent-date/m-p/233003#M84554</guid>
      <dc:creator>pover</dc:creator>
      <dc:date>2010-10-08T22:07:16Z</dc:date>
    </item>
    <item>
      <title>the most recent date</title>
      <link>https://community.qlik.com/t5/QlikView/the-most-recent-date/m-p/233004#M84555</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I really want it what you said, but he can not get a date whose value is null ...&lt;BR /&gt;&lt;BR /&gt;Eduardo think that the "A___200___12/03/10" was just a field ... but I used "___" to separate the fields... I have 3 columns and not 1 field.&lt;BR /&gt;&lt;BR /&gt;Please do not send me the file. qvw .... Send me examples&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Oct 2010 18:28:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/the-most-recent-date/m-p/233004#M84555</guid>
      <dc:creator />
      <dc:date>2010-10-13T18:28:43Z</dc:date>
    </item>
    <item>
      <title>the most recent date</title>
      <link>https://community.qlik.com/t5/QlikView/the-most-recent-date/m-p/233005#M84556</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DATE(MAX(TOTAL IF(Value &amp;lt;&amp;gt; '', Date)), 'DD/MM/YY')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Oct 2010 19:24:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/the-most-recent-date/m-p/233005#M84556</guid>
      <dc:creator />
      <dc:date>2010-10-13T19:24:50Z</dc:date>
    </item>
    <item>
      <title>the most recent date</title>
      <link>https://community.qlik.com/t5/QlikView/the-most-recent-date/m-p/233006#M84557</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;did not work out too... but I used:&lt;/P&gt;&lt;P&gt;if(VALUE&amp;gt;=0,maxstring(if(VALUE&amp;gt;=0,DATE)))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and it worked.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Oct 2010 19:34:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/the-most-recent-date/m-p/233006#M84557</guid>
      <dc:creator />
      <dc:date>2010-10-13T19:34:36Z</dc:date>
    </item>
  </channel>
</rss>

