<?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: Max function in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Max-function/m-p/385157#M1165736</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Beware of performing the Max() in the script as it will ignore any user-selections.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In a straight-table chart, with all of the fields in your table above as dimensions, add this expression:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max(TOTAL &amp;lt;Project&amp;gt; [Date of Update])&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will show you the date of the latest update for each project (just to demonstrate the logic).&amp;nbsp; Now, in the dimension tab, expand the + next to Issue Update Comment and double-click "Text Color".&amp;nbsp; In the expression box, write:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF([Date of Update]=Max(TOTAL &amp;lt;Project&amp;gt; [Date of Update]),Blue(),Black())&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jason&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 06 Sep 2012 16:05:26 GMT</pubDate>
    <dc:creator>Jason_Michaelides</dc:creator>
    <dc:date>2012-09-06T16:05:26Z</dc:date>
    <item>
      <title>Max function</title>
      <link>https://community.qlik.com/t5/QlikView/Max-function/m-p/385156#M1165735</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;I have a set of projects which have issues logged against them. Each of the Issues can have multiple Issue Update Comments.&lt;/P&gt;&lt;P&gt;I would like to be able to evaluate the 'Date of Update' column and display the newest 'Issue Update Comment', highlighted below in blue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I understand that this can be done using the 'max' function on the 'Date of Update' field. Unfortunately I am having some difficulty implementing this.&lt;/P&gt;&lt;P&gt;I have been able to successfully retrieve the latest update date using the below function in the script (and grouping by Issue ID):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; max(DateOfUpdate) as IssueUpdateLatest&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However I am unable to return only the latest update which results in duplicate records in any tables created.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My data looks like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" cellpadding="3" cellspacing="0" class="jiveBorder" style="width: 80%; border: 1px solid #000000;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH align="center" style="background-color: #6690bc;" valign="middle"&gt;&lt;SPAN style="color: #ffffff;"&gt;&lt;STRONG&gt;Project&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/TH&gt;&lt;TH align="center" style="background-color: #6690bc;" valign="middle"&gt;&lt;SPAN style="color: #ffffff;"&gt;&lt;STRONG&gt;Issue&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/TH&gt;&lt;TH align="center" style="background-color: #6690bc;" valign="middle"&gt;&lt;SPAN style="color: #ffffff;"&gt;&lt;STRONG&gt;Issue﻿ ID&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/TH&gt;&lt;TH align="center" style="background-color: #6690bc;" valign="middle"&gt;&lt;SPAN style="color: #ffffff;"&gt;&lt;STRONG&gt;Issue Update ID&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/TH&gt;&lt;TH align="center" style="background-color: #6690bc;" valign="middle"&gt;&lt;SPAN style="color: #ffffff;"&gt;&lt;STRONG&gt;Issue Update Comment&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/TH&gt;&lt;TH align="center" style="background-color: #6690bc;" valign="middle"&gt;&lt;SPAN style="color: #ffffff;"&gt;&lt;STRONG style="color: #ffffff;"&gt;&lt;STRONG&gt;Date of Update&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Alpha&lt;/TD&gt;&lt;TD&gt;Funding Issue&lt;/TD&gt;&lt;TD&gt;100&lt;/TD&gt;&lt;TD&gt;101&lt;/TD&gt;&lt;TD&gt;&lt;SPAN style="color: #000000;"&gt;Recently identified an issue with&amp;nbsp; the funding&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD&gt;01/02/12&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Alpha&lt;/TD&gt;&lt;TD&gt;Funding Issue&lt;/TD&gt;&lt;TD&gt;100&lt;/TD&gt;&lt;TD&gt;102&lt;/TD&gt;&lt;TD&gt;&lt;SPAN style="color: #3366ff;"&gt;&lt;STRONG&gt;Have spoken to John and am working on fix&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD&gt;15/02/12&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Bravo&lt;/TD&gt;&lt;TD&gt;Resource Issue&lt;/TD&gt;&lt;TD&gt;110&lt;/TD&gt;&lt;TD&gt;111&lt;/TD&gt;&lt;TD&gt;Resource probs&lt;/TD&gt;&lt;TD&gt;01/03/12&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Bravo&lt;/TD&gt;&lt;TD&gt;Resource Issue&lt;/TD&gt;&lt;TD&gt;120&lt;/TD&gt;&lt;TD&gt;121&lt;/TD&gt;&lt;TD&gt;&lt;SPAN style="color: #3366ff;"&gt;&lt;STRONG&gt;Resource probs update&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD&gt;12/08/12&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Charlie&lt;/TD&gt;&lt;TD&gt;Branding decision&lt;/TD&gt;&lt;TD&gt;130&lt;/TD&gt;&lt;TD&gt;131&lt;/TD&gt;&lt;TD&gt;&lt;SPAN style="color: #3366ff;"&gt;&lt;STRONG&gt;Logo decision not made&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD&gt;28/08/12&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help would be much appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks,&lt;/P&gt;&lt;P&gt;Alan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Sep 2012 15:39:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Max-function/m-p/385156#M1165735</guid>
      <dc:creator />
      <dc:date>2012-09-06T15:39:10Z</dc:date>
    </item>
    <item>
      <title>Re: Max function</title>
      <link>https://community.qlik.com/t5/QlikView/Max-function/m-p/385157#M1165736</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Beware of performing the Max() in the script as it will ignore any user-selections.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In a straight-table chart, with all of the fields in your table above as dimensions, add this expression:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max(TOTAL &amp;lt;Project&amp;gt; [Date of Update])&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will show you the date of the latest update for each project (just to demonstrate the logic).&amp;nbsp; Now, in the dimension tab, expand the + next to Issue Update Comment and double-click "Text Color".&amp;nbsp; In the expression box, write:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF([Date of Update]=Max(TOTAL &amp;lt;Project&amp;gt; [Date of Update]),Blue(),Black())&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jason&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Sep 2012 16:05:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Max-function/m-p/385157#M1165736</guid>
      <dc:creator>Jason_Michaelides</dc:creator>
      <dc:date>2012-09-06T16:05:26Z</dc:date>
    </item>
    <item>
      <title>Re: Max function</title>
      <link>https://community.qlik.com/t5/QlikView/Max-function/m-p/385158#M1165737</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jason,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your very helpful response.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I wanted to limit the records displayed so that &lt;SPAN style="text-decoration: underline;"&gt;only&lt;/SPAN&gt; the latest record was shown, how could that be done?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Alan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Sep 2012 12:19:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Max-function/m-p/385158#M1165737</guid>
      <dc:creator />
      <dc:date>2012-09-07T12:19:12Z</dc:date>
    </item>
    <item>
      <title>Re: Max function</title>
      <link>https://community.qlik.com/t5/QlikView/Max-function/m-p/385159#M1165738</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe try as your expression:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF([Date of Update]=Max(TOTAL &amp;lt;Project&amp;gt; [Date of Update]),[Date of Update],0)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jason&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 09 Sep 2012 08:24:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Max-function/m-p/385159#M1165738</guid>
      <dc:creator>Jason_Michaelides</dc:creator>
      <dc:date>2012-09-09T08:24:41Z</dc:date>
    </item>
    <item>
      <title>Re: Max function</title>
      <link>https://community.qlik.com/t5/QlikView/Max-function/m-p/385160#M1165739</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try with FirstSortedValue which will help.&lt;/P&gt;&lt;P&gt;May be like FirstSortedValue([Issue Update Command],Aggr([Date of Update],[Issue ID]))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 09 Sep 2012 10:38:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Max-function/m-p/385160#M1165739</guid>
      <dc:creator>CELAMBARASAN</dc:creator>
      <dc:date>2012-09-09T10:38:28Z</dc:date>
    </item>
    <item>
      <title>Re: Max function</title>
      <link>https://community.qlik.com/t5/QlikView/Max-function/m-p/385161#M1165740</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;table:&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;LOAD&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Project&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Issue&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Issue ID]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Issue Update ID]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Issue Update Comment]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Date of Update]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Date of Update]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;amp;'_'&amp;amp;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Project&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;_key&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;FROM&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; D:\QlikView\AXS\data\test.xlsx&lt;BR /&gt; (&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;ooxml&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;embedded&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;labels&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;table&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;is&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; Feuil1);&lt;BR /&gt; &lt;BR /&gt; Mytable:&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;Load&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Project&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;ID&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;max&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;date&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Date of Update]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,'DD/MM/YYYY')) &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;maxdate&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Resident&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; table&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;group&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;by&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Project&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;;&lt;BR /&gt; &lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;Let&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM style=": ; color: #808080; font-size: 8pt;"&gt;ID&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;= &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;fieldvalue&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;('maxdate',&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;fieldindex&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;('ID','')) ;&lt;BR /&gt; &lt;BR /&gt; projet:&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;NoConcatenate&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;LOAD&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;maxdate&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;amp;'_'&amp;amp;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;ID&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;_key&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;maxdate&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Resident&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; Mytable;&lt;BR /&gt; &lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Inner&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;join&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;LOAD&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; *&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Resident&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; table;&lt;BR /&gt; &lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;drop&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;table&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; table, Mytable ;&lt;BR /&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Aug 2015 09:25:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Max-function/m-p/385161#M1165740</guid>
      <dc:creator />
      <dc:date>2015-08-07T09:25:19Z</dc:date>
    </item>
  </channel>
</rss>

