<?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: Select only the most recent values in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Select-only-the-most-recent-values/m-p/1282554#M623754</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry you would need to change your script to have it included like so :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Left keep&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Table6:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Load&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;ChangeKeyValue as ITMSNumber,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;&lt;EM&gt;ChangeDate,&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;IF(ChangeNewValue='Quarantined - DSC', date(Today()) - Floor(date(TIMESTAMP(ChangeDate, 'YYYY-MM-DD hh.mm.ss.fff')))) as DaysPassed;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;SQL SELECT ChangeKeyValue,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;ChangeNewValue,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;ChangeDate&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM MPL.dbo."tblCHANGE";&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 19 Jan 2017 19:49:39 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2017-01-19T19:49:39Z</dc:date>
    <item>
      <title>Select only the most recent values</title>
      <link>https://community.qlik.com/t5/QlikView/Select-only-the-most-recent-values/m-p/1282549#M623749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not sure how to select the most recent value for presentation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a field called [ChangeDate] and a load script that looks like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Left keep&lt;/P&gt;&lt;P&gt;Table6:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;ChangeKeyValue as ITMSNumber,&lt;/P&gt;&lt;P&gt;IF(ChangeNewValue='Quarantined - DSC', date(Today()) - Floor(date(TIMESTAMP(ChangeDate, 'YYYY-MM-DD hh.mm.ss.fff')))) as DaysPassed;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQL SELECT ChangeKeyValue,&lt;/P&gt;&lt;P&gt;ChangeNewValue,&lt;/P&gt;&lt;P&gt;ChangeDate&lt;/P&gt;&lt;P&gt;FROM MPL.dbo."tblCHANGE";&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All I want is the most recent [ChangeNewValue] if they read "Quarantined - DSC".&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jan 2017 19:03:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-only-the-most-recent-values/m-p/1282549#M623749</guid>
      <dc:creator />
      <dc:date>2017-01-19T19:03:48Z</dc:date>
    </item>
    <item>
      <title>Re: Select only the most recent value</title>
      <link>https://community.qlik.com/t5/QlikView/Select-only-the-most-recent-values/m-p/1282550#M623750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could try.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SummaryTable:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;ITMSNumber,&lt;/P&gt;&lt;P&gt;max([ChangeDate] as ChangeDateMax&lt;/P&gt;&lt;P&gt;resident YourTable&lt;/P&gt;&lt;P&gt;group by ITMSNumber&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jan 2017 19:13:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-only-the-most-recent-values/m-p/1282550#M623750</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-01-19T19:13:55Z</dc:date>
    </item>
    <item>
      <title>Re: Select only the most recent values</title>
      <link>https://community.qlik.com/t5/QlikView/Select-only-the-most-recent-values/m-p/1282551#M623751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can you write it exactly how it should go in there or at least elaborate a bit?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jan 2017 19:16:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-only-the-most-recent-values/m-p/1282551#M623751</guid>
      <dc:creator />
      <dc:date>2017-01-19T19:16:35Z</dc:date>
    </item>
    <item>
      <title>Re: Select only the most recent values</title>
      <link>https://community.qlik.com/t5/QlikView/Select-only-the-most-recent-values/m-p/1282552#M623752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Essentially create a summary table that has just the max changed date you're looking for.&lt;/P&gt;&lt;P&gt;So after your code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Left keep&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Table6:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Load&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;ChangeKeyValue as ITMSNumber,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;IF(ChangeNewValue='Quarantined - DSC', date(Today()) - Floor(date(TIMESTAMP(ChangeDate, 'YYYY-MM-DD hh.mm.ss.fff')))) as DaysPassed;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;SQL SELECT ChangeKeyValue,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;ChangeNewValue,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;ChangeDate&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM MPL.dbo."tblCHANGE";&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;You would add:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;SummaryTable:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Load&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;ITMSNumber,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;max([ChangeDate] as ChangeDateMax&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;resident Table6&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;group by ITMSNumber&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;This would give you a summary table with max changed date for each ITMSNumber. It would look something like this.&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" style="border: 1px solid rgb(0, 0, 0); width: 100%;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;ITMSNumber&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;ChangeDateMax&lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;1A&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;01/01/2016&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;2B&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;06/15/16&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;4C&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;12/12/16&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jan 2017 19:31:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-only-the-most-recent-values/m-p/1282552#M623752</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-01-19T19:31:33Z</dc:date>
    </item>
    <item>
      <title>Re: Select only the most recent values</title>
      <link>https://community.qlik.com/t5/QlikView/Select-only-the-most-recent-values/m-p/1282553#M623753</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's coming back with "ChangeDate" not found...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jan 2017 19:46:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-only-the-most-recent-values/m-p/1282553#M623753</guid>
      <dc:creator />
      <dc:date>2017-01-19T19:46:54Z</dc:date>
    </item>
    <item>
      <title>Re: Select only the most recent values</title>
      <link>https://community.qlik.com/t5/QlikView/Select-only-the-most-recent-values/m-p/1282554#M623754</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry you would need to change your script to have it included like so :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Left keep&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Table6:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Load&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;ChangeKeyValue as ITMSNumber,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;&lt;EM&gt;ChangeDate,&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;IF(ChangeNewValue='Quarantined - DSC', date(Today()) - Floor(date(TIMESTAMP(ChangeDate, 'YYYY-MM-DD hh.mm.ss.fff')))) as DaysPassed;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;SQL SELECT ChangeKeyValue,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;ChangeNewValue,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;ChangeDate&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM MPL.dbo."tblCHANGE";&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jan 2017 19:49:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-only-the-most-recent-values/m-p/1282554#M623754</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-01-19T19:49:39Z</dc:date>
    </item>
    <item>
      <title>Re: Select only the most recent values</title>
      <link>https://community.qlik.com/t5/QlikView/Select-only-the-most-recent-values/m-p/1282555#M623755</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok it worked. Now how can I put a count of all of the most recent "Quarantined - DSC" that I have into a text box?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jan 2017 19:52:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-only-the-most-recent-values/m-p/1282555#M623755</guid>
      <dc:creator />
      <dc:date>2017-01-19T19:52:16Z</dc:date>
    </item>
    <item>
      <title>Re: Select only the most recent values</title>
      <link>https://community.qlik.com/t5/QlikView/Select-only-the-most-recent-values/m-p/1282556#M623756</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;=count(ChangeDateMax) is one way.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jan 2017 20:00:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-only-the-most-recent-values/m-p/1282556#M623756</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-01-19T20:00:06Z</dc:date>
    </item>
    <item>
      <title>Re: Select only the most recent values</title>
      <link>https://community.qlik.com/t5/QlikView/Select-only-the-most-recent-values/m-p/1282557#M623757</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That is way off. It says 3763 when there is only 37 Quarantined - DSC in the data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jan 2017 20:01:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-only-the-most-recent-values/m-p/1282557#M623757</guid>
      <dc:creator />
      <dc:date>2017-01-19T20:01:35Z</dc:date>
    </item>
    <item>
      <title>Re: Select only the most recent values</title>
      <link>https://community.qlik.com/t5/QlikView/Select-only-the-most-recent-values/m-p/1282558#M623758</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I keep making erroneous assumptions.&amp;nbsp; I apologize.&amp;nbsp; You're pulling all ChangeNewValues into your summary table.&lt;/P&gt;&lt;P&gt;Add in the ChangeNewValue into your table6 and then filter to quarantined with summary table generation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Left keep&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Table6:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Load&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;ChangeKeyValue as ITMSNumber,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&lt;EM style="font-weight: inherit; font-family: inherit;"&gt;ChangeDate,&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&lt;EM style="font-weight: inherit; font-family: inherit;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;ChangeNewValue&lt;/SPAN&gt;,&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;IF(ChangeNewValue='Quarantined - DSC', date(Today()) - Floor(date(TIMESTAMP(ChangeDate, 'YYYY-MM-DD hh.mm.ss.fff'))))&lt;/SPAN&gt;;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; &lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;SQL SELECT ChangeKeyValue,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;ChangeNewValue,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;ChangeDate&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM MPL.dbo."tblCHANGE";&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;SummaryTable:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Load&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;ITMSNumber,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;max([ChangeDate] as ChangeDateMax&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;resident Table6&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;group by ITMSNumber&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;where &lt;STRONG style="color: #3d3d3d; font-family: inherit; font-size: 13px; font-style: inherit;"&gt;&lt;EM style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-weight: inherit;"&gt;ChangeNewValue&lt;/EM&gt;&lt;/STRONG&gt;=&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;'Quarantined - DSC'&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;then your formula for your text box would be =count(ChangeDateMax)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jan 2017 20:11:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-only-the-most-recent-values/m-p/1282558#M623758</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-01-19T20:11:12Z</dc:date>
    </item>
    <item>
      <title>Re: Select only the most recent values</title>
      <link>https://community.qlik.com/t5/QlikView/Select-only-the-most-recent-values/m-p/1282559#M623759</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It says "garbage after statement" and underlines &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;where &lt;/SPAN&gt;&lt;STRONG style="font-style: inherit; font-size: 13px; font-family: inherit; color: #3d3d3d;"&gt;&lt;EM style="font-weight: inherit; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;ChangeNewValue&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;'Quarantined - DSC'&lt;/SPAN&gt; in red.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note that I don't want only a count of all the most recent quarantined, I want to have a count of all the quarantined under 5 days, then over 5 days and under 15, then over 15 days. That's why I have the DaysPassed variable in there.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jan 2017 20:15:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-only-the-most-recent-values/m-p/1282559#M623759</guid>
      <dc:creator />
      <dc:date>2017-01-19T20:15:57Z</dc:date>
    </item>
    <item>
      <title>Re: Select only the most recent values</title>
      <link>https://community.qlik.com/t5/QlikView/Select-only-the-most-recent-values/m-p/1282560#M623760</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not to confuse you&amp;nbsp; but now that I know you're trying to get it in a text box - as an alternative, to go without the summary table you could do this in your script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Left keep&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Table6:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Load&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;ChangeKeyValue as ITMSNumber,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&lt;EM style="font-weight: inherit; font-family: inherit;"&gt;ChangeDate,&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&lt;EM style="font-weight: inherit; font-family: inherit;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;ChangeNewValue&lt;/SPAN&gt;,&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;IF(ChangeNewValue='Quarantined - DSC', date(Today()) - Floor(date(TIMESTAMP(ChangeDate, 'YYYY-MM-DD hh.mm.ss.fff'))))&lt;/SPAN&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;SQL SELECT ChangeKeyValue,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;ChangeNewValue,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;ChangeDate&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM MPL.dbo."tblCHANGE";&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;and then this in your text box.&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;=count(aggr(max({&amp;lt;ChangeNewValue={'&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Quarantined - DSC&lt;/SPAN&gt;'}&amp;gt;}ChangeDate),ITMSNumber))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jan 2017 20:17:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-only-the-most-recent-values/m-p/1282560#M623760</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-01-19T20:17:01Z</dc:date>
    </item>
    <item>
      <title>Re: Select only the most recent values</title>
      <link>https://community.qlik.com/t5/QlikView/Select-only-the-most-recent-values/m-p/1282561#M623761</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;That should work.&amp;nbsp; Make sure you added ChangeNewValue to Table6.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;You could also try:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;where match(ChangeNewValue,'&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Quarantined - DSC'&lt;/SPAN&gt;)&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jan 2017 20:19:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-only-the-most-recent-values/m-p/1282561#M623761</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-01-19T20:19:55Z</dc:date>
    </item>
    <item>
      <title>Re: Select only the most recent values</title>
      <link>https://community.qlik.com/t5/QlikView/Select-only-the-most-recent-values/m-p/1282562#M623762</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ok. It says 9... I'm sorry but that didn't accomplish what I was looking for. What is the 9 for?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Quarantined (Days)&lt;/P&gt;&lt;P&gt;&amp;gt; 15 (Text box), &amp;gt; 5 &amp;lt; 15 (Text box), &amp;lt; 5 (Text box)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jan 2017 20:24:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-only-the-most-recent-values/m-p/1282562#M623762</guid>
      <dc:creator />
      <dc:date>2017-01-19T20:24:27Z</dc:date>
    </item>
    <item>
      <title>Re: Select only the most recent values</title>
      <link>https://community.qlik.com/t5/QlikView/Select-only-the-most-recent-values/m-p/1282563#M623763</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you share your qvw or mock up a dummy one that represents your data?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jan 2017 20:26:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-only-the-most-recent-values/m-p/1282563#M623763</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-01-19T20:26:39Z</dc:date>
    </item>
    <item>
      <title>Re: Select only the most recent values</title>
      <link>https://community.qlik.com/t5/QlikView/Select-only-the-most-recent-values/m-p/1282564#M623764</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please have a look. This is the best I can do for now.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Data.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/150130_Data.PNG" style="height: 347px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="load script.PNG" class="jive-image image-2" src="/legacyfs/online/150137_load script.PNG" style="height: 239px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="quarantined days.PNG" class="jive-image image-3" src="/legacyfs/online/150138_quarantined days.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="text object properties.PNG" class="image-4 jive-image" src="/legacyfs/online/150139_text object properties.PNG" style="height: 520px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jan 2017 21:00:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-only-the-most-recent-values/m-p/1282564#M623764</guid>
      <dc:creator />
      <dc:date>2017-01-19T21:00:46Z</dc:date>
    </item>
    <item>
      <title>Re: Select only the most recent values</title>
      <link>https://community.qlik.com/t5/QlikView/Select-only-the-most-recent-values/m-p/1282565#M623765</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I see.&amp;nbsp; I'm assuming you only need quarantined so use this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Left keep&lt;/P&gt;&lt;P&gt;Table6:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;ChangeKeyValue as ITMSNumber,&lt;/P&gt;&lt;P&gt;ChangeDate,&lt;/P&gt;&lt;P&gt;ChangeNewValue,&lt;/P&gt;&lt;P&gt;IF(ChangeNewValue='Quarantined - DSC', date(Today()) - Floor(date(TIMESTAMP(ChangeDate, 'YYYY-MM-DD hh.mm.ss.fff'))));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQL SELECT ChangeKeyValue,&lt;/P&gt;&lt;P&gt;ChangeNewValue,&lt;/P&gt;&lt;P&gt;ChangeDate&lt;/P&gt;&lt;P&gt;FROM MPL.dbo."tblCHANGE";&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;inner join(Table6)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;ITMSNumber,&lt;/P&gt;&lt;P&gt;ChangeNewValue,&lt;/P&gt;&lt;P&gt;max([ChangeDate] as ChangeDate&lt;/P&gt;&lt;P&gt;resident Table6&lt;/P&gt;&lt;P&gt;where ChangeNewValue='Quarantined - DSC'&lt;/P&gt;&lt;P&gt;group by ITMSNumber,ChangeNewValue&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jan 2017 21:20:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-only-the-most-recent-values/m-p/1282565#M623765</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-01-19T21:20:27Z</dc:date>
    </item>
    <item>
      <title>Re: Select only the most recent values</title>
      <link>https://community.qlik.com/t5/QlikView/Select-only-the-most-recent-values/m-p/1282566#M623766</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok I ran the script now how do I get this to add up to 37?&lt;/P&gt;&lt;P&gt;&lt;IMG alt="quarantined days.PNG" class="jive-image image-1" src="/legacyfs/online/150257_quarantined days.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code I am using is as follows-&lt;/P&gt;&lt;P&gt;=Count({1&amp;lt;DaysPassed = {'&amp;lt;5'}&amp;gt;} ITMSNumber)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, I see that you don't have DaysPassed in your script. Did I do something wrong by keeping it there?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jan 2017 13:43:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-only-the-most-recent-values/m-p/1282566#M623766</guid>
      <dc:creator />
      <dc:date>2017-01-20T13:43:40Z</dc:date>
    </item>
    <item>
      <title>Re: Select only the most recent values</title>
      <link>https://community.qlik.com/t5/QlikView/Select-only-the-most-recent-values/m-p/1282567#M623767</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Change this:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;IF(ChangeNewValue='Quarantined - DSC', date(Today()) - Floor(date(TIMESTAMP(ChangeDate, 'YYYY-MM-DD hh.mm.ss.fff'))))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;to &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;IF(ChangeNewValue='Quarantined - DSC', date(Today()) - Floor(date(TIMESTAMP(ChangeDate, 'YYYY-MM-DD hh.mm.ss.fff')))) as DaysPassed&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;And your expression should work.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jan 2017 16:57:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-only-the-most-recent-values/m-p/1282567#M623767</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-01-20T16:57:15Z</dc:date>
    </item>
  </channel>
</rss>

