<?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: Set Analysis with Max Date with Time-based Dimension in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Set-Analysis-with-Max-Date-with-Time-based-Dimension/m-p/734563#M1050286</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't have the data to debug, but for product it should be:&lt;/P&gt;&lt;P&gt;Sum({&amp;lt;Date={$(=Chr(39) &amp;amp; Concat(Aggr(Date(max({&amp;lt;Value={"*"}, Quantity={"*"}&amp;gt;} Date)), &lt;STRONG&gt;Product&lt;/STRONG&gt;), Chr(39) &amp;amp; ',' &amp;amp; Chr(39)) &amp;amp; Chr(39))}&amp;gt;} Value)&lt;/P&gt;&lt;P&gt;/ Sum({&amp;lt;Date={$(=Chr(39) &amp;amp; Concat(Aggr(Date(max({&amp;lt;Value={"*"}, Quantity={"*"}&amp;gt;} Date)), &lt;STRONG&gt;Product&lt;/STRONG&gt;), Chr(39) &amp;amp; ',' &amp;amp; Chr(39)) &amp;amp; Chr(39))}&amp;gt;} Quantity)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set analisys is calculated for the entire table, not for row, so this expression sets the Date with all the dates needed for the table, dimension (Product in this case) will filter to the date needed for each row.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 10 Nov 2014 11:32:09 GMT</pubDate>
    <dc:creator>rubenmarin</dc:creator>
    <dc:date>2014-11-10T11:32:09Z</dc:date>
    <item>
      <title>Set Analysis with Max Date with Time-based Dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-with-Max-Date-with-Time-based-Dimension/m-p/734557#M1050280</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm trying to get the latest non null value of a fields in my QVW.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My expression is:&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;sum({$&amp;lt;[Month Value] = {"$(=vMaxUnitCostMonth)"}&amp;gt;} [Value])&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where vMaxUnitCostMonth is: &lt;STRONG&gt;Max(if([Quantity] &amp;gt; 0 and [Value] &amp;gt; 0, [Month Value], Null()))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;This works fine when the dimension is not time based.&amp;nbsp; When it's time based, it will give me the sum(Value) and seems to ignore the set analysis entirely.&lt;/P&gt;&lt;P&gt;When I modify the sum to: &lt;STRONG&gt;sum({$&amp;lt;[Month Value] = {"$(=num($(vMaxUnitCostMonth)))"}&amp;gt;} [Value])&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it returns the correct value, but only for the max dimension. For example, if the dimension is Year, the only value that shows up is the year of the max([Month Value]). It's as though the variable is evaluating first, then checking each dimension for it instead of evaluating in relation to the dimension.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way to get the variable to evaluate in relation to the dimension? Given:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" height="216" jive-data-cell="{&amp;quot;color&amp;quot;:&amp;quot;#575757&amp;quot;,&amp;quot;textAlign&amp;quot;:&amp;quot;left&amp;quot;,&amp;quot;padding&amp;quot;:&amp;quot;2&amp;quot;,&amp;quot;backgroundColor&amp;quot;:&amp;quot;transparent&amp;quot;,&amp;quot;fontFamily&amp;quot;:&amp;quot;arial,helvetica,sans-serif&amp;quot;,&amp;quot;verticalAlign&amp;quot;:&amp;quot;baseline&amp;quot;}" jive-data-header="{&amp;quot;color&amp;quot;:&amp;quot;#FFFFFF&amp;quot;,&amp;quot;backgroundColor&amp;quot;:&amp;quot;#6690BC&amp;quot;,&amp;quot;textAlign&amp;quot;:&amp;quot;center&amp;quot;,&amp;quot;padding&amp;quot;:&amp;quot;2&amp;quot;}" style="border: 1px solid #000000; width: 409px; height: 218px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;Year&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Month Values&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Max([Month Value])&lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;2008&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;200808, 200809, 200810&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;200810&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;2009&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;200908, 200909, 200911&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;200911&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;2010&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;201007, 201008, 201009&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;201009&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;2011&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;201101, 201102, 201103&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;201103&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;2012&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;null&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;-&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;2013&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;201301, 201302, 201305, 201312&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;201312&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If my Dimension is Year, the only value that populates is 2013 as it's got the highest date of all of them, so I get the unit cost only for that year. When I put just the variable as an expression column, it gives the the correct max([Month Value]) in relation to the dimension. Why does it not do the same when it's inside set analysis?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've also tried sum(aggr(if( [Month Value] = $(vMaxUnitCostMonth), sum(Value), 0), [Month Value], Year)), but it gives the sum(Value) of the entire year and not the latest value. When I make another chart with Dimensions of Year, [Month Value] and use the aggr(if( [Month Value] = $(vMaxUnitCostMonth), sum(Value), 0), [Month Value], Year), it gives appropriate data, but for each [Month Value] instead of only the max.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thoughts?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Oct 2014 14:42:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-with-Max-Date-with-Time-based-Dimension/m-p/734557#M1050280</guid>
      <dc:creator />
      <dc:date>2014-10-30T14:42:39Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis with Max Date with Time-based Dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-with-Max-Date-with-Time-based-Dimension/m-p/734558#M1050281</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alex, set analisys is calculated for the whole table, so it will not filter different values for each row, maybe you can try:&lt;/P&gt;&lt;P&gt;sum(if([Month Value] = Max([Month Value]), sum(Value), 0)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If that doesn't works a sample data will be nice for testing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FYI: In a table, if you remove the colum title, you can see the expression calculated, with $-Values expanded. Check if they are what you are looking.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Oct 2014 15:11:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-with-Max-Date-with-Time-based-Dimension/m-p/734558#M1050281</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2014-10-30T15:11:24Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis with Max Date with Time-based Dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-with-Max-Date-with-Time-based-Dimension/m-p/734559#M1050282</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Still no dice. Attaching a QVW.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tried modifying it to take into account non-null values:&amp;nbsp; sum(if([Month Value] = Max(if([Inventory Quantity] &amp;gt; 0 and [Inventory Value] &amp;gt; 0, [Month Value])), sum([Inventory Value]), 0)) and that didn't work either. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Oct 2014 15:35:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-with-Max-Date-with-Time-based-Dimension/m-p/734559#M1050282</guid>
      <dc:creator />
      <dc:date>2014-10-30T15:35:52Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Set Analysis with Max Date with Time-based Dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-with-Max-Date-with-Time-based-Dimension/m-p/734560#M1050283</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, seems it's working with:&lt;/P&gt;&lt;P&gt;Sum({&amp;lt;Date={$(=Chr(39) &amp;amp; Concat(Aggr(Date(max({&amp;lt;Value={"*"}, Quantity={"*"}&amp;gt;} Date)), Year), Chr(39) &amp;amp; ',' &amp;amp; Chr(39)) &amp;amp; Chr(39))}&amp;gt;} Value)&lt;/P&gt;&lt;P&gt;/ Sum({&amp;lt;Date={$(=Chr(39) &amp;amp; Concat(Aggr(Date(max({&amp;lt;Value={"*"}, Quantity={"*"}&amp;gt;} Date)), Year), Chr(39) &amp;amp; ',' &amp;amp; Chr(39)) &amp;amp; Chr(39))}&amp;gt;} Quantity)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Oct 2014 16:17:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-with-Max-Date-with-Time-based-Dimension/m-p/734560#M1050283</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2014-10-30T16:17:52Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis with Max Date with Time-based Dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-with-Max-Date-with-Time-based-Dimension/m-p/734561#M1050284</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think I did it in the wrong table, for the table with year-month it should be:&lt;/P&gt;&lt;P&gt;Sum({&amp;lt;Date={$(=Chr(39) &amp;amp; Concat(Aggr(Date(max({&amp;lt;Value={"*"}, Quantity={"*"}&amp;gt;} Date)), Year, [Month Value]), Chr(39) &amp;amp; ',' &amp;amp; Chr(39)) &amp;amp; Chr(39))}&amp;gt;} Value)&lt;/P&gt;&lt;P&gt;/ Sum({&amp;lt;Date={$(=Chr(39) &amp;amp; Concat(Aggr(Date(max({&amp;lt;Value={"*"}, Quantity={"*"}&amp;gt;} Date)), Year, [Month Value]), Chr(39) &amp;amp; ',' &amp;amp; Chr(39)) &amp;amp; Chr(39))}&amp;gt;} Quantity)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Oct 2014 16:29:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-with-Max-Date-with-Time-based-Dimension/m-p/734561#M1050284</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2014-10-30T16:29:16Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Re: Set Analysis with Max Date with Time-based Dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-with-Max-Date-with-Time-based-Dimension/m-p/734562#M1050285</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This only works when it's a 1:1 relationship between the dimension and the max(Date). For example, if you were to use a dimension such as product in which the max date for one product was 12-31-13 and the max date for another product was 3-31-11, it'd do the sum(&amp;lt;Date = {"12/31/2013","3/31/2011"} Value), which would not work in the instance that product one has a value for &lt;EM&gt;both&lt;/EM&gt; 12-31-13 and 3-13-11.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, given:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" height="99" style="border: 1px solid #000000; width: 266px; height: 93px;" width="264"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Product&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Date&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Value&lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;Product 1&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;03-31-2011&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;39.8&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;Product 1&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;12-31-2013&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;40&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;Product 2&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;03-31-2011&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;12&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the resulting table would be:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" height="78" jive-data-cell="{&amp;quot;color&amp;quot;:&amp;quot;#000000&amp;quot;,&amp;quot;textAlign&amp;quot;:&amp;quot;left&amp;quot;,&amp;quot;padding&amp;quot;:&amp;quot;2&amp;quot;}" jive-data-header="{&amp;quot;color&amp;quot;:&amp;quot;#FFFFFF&amp;quot;,&amp;quot;backgroundColor&amp;quot;:&amp;quot;#6690BC&amp;quot;,&amp;quot;textAlign&amp;quot;:&amp;quot;center&amp;quot;,&amp;quot;padding&amp;quot;:&amp;quot;2&amp;quot;,&amp;quot;fontFamily&amp;quot;:&amp;quot;arial,helvetica,sans-serif&amp;quot;,&amp;quot;verticalAlign&amp;quot;:&amp;quot;baseline&amp;quot;}" style="border: 1px solid #000000; width: 191px; height: 80px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;Product&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Value&lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;Product 1&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;79.8&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;Product 2&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;12&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;instead of&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" height="78" jive-data-cell="{&amp;quot;color&amp;quot;:&amp;quot;#000000&amp;quot;,&amp;quot;textAlign&amp;quot;:&amp;quot;left&amp;quot;,&amp;quot;padding&amp;quot;:&amp;quot;2&amp;quot;}" jive-data-header="{&amp;quot;color&amp;quot;:&amp;quot;#FFFFFF&amp;quot;,&amp;quot;backgroundColor&amp;quot;:&amp;quot;#6690BC&amp;quot;,&amp;quot;textAlign&amp;quot;:&amp;quot;center&amp;quot;,&amp;quot;padding&amp;quot;:&amp;quot;2&amp;quot;,&amp;quot;fontFamily&amp;quot;:&amp;quot;arial,helvetica,sans-serif&amp;quot;,&amp;quot;verticalAlign&amp;quot;:&amp;quot;baseline&amp;quot;}" style="border: 1px solid #000000; width: 191px; height: 80px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;Product&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Value&lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;Product 1&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;40&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;Product 2&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;12&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;because the expression is: sum(&amp;lt;Date = {"12/31/2013","3/31/2011"} Value)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thoughts?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2014 19:50:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-with-Max-Date-with-Time-based-Dimension/m-p/734562#M1050285</guid>
      <dc:creator />
      <dc:date>2014-11-07T19:50:29Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis with Max Date with Time-based Dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-with-Max-Date-with-Time-based-Dimension/m-p/734563#M1050286</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't have the data to debug, but for product it should be:&lt;/P&gt;&lt;P&gt;Sum({&amp;lt;Date={$(=Chr(39) &amp;amp; Concat(Aggr(Date(max({&amp;lt;Value={"*"}, Quantity={"*"}&amp;gt;} Date)), &lt;STRONG&gt;Product&lt;/STRONG&gt;), Chr(39) &amp;amp; ',' &amp;amp; Chr(39)) &amp;amp; Chr(39))}&amp;gt;} Value)&lt;/P&gt;&lt;P&gt;/ Sum({&amp;lt;Date={$(=Chr(39) &amp;amp; Concat(Aggr(Date(max({&amp;lt;Value={"*"}, Quantity={"*"}&amp;gt;} Date)), &lt;STRONG&gt;Product&lt;/STRONG&gt;), Chr(39) &amp;amp; ',' &amp;amp; Chr(39)) &amp;amp; Chr(39))}&amp;gt;} Quantity)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set analisys is calculated for the entire table, not for row, so this expression sets the Date with all the dates needed for the table, dimension (Product in this case) will filter to the date needed for each row.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Nov 2014 11:32:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-with-Max-Date-with-Time-based-Dimension/m-p/734563#M1050286</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2014-11-10T11:32:09Z</dc:date>
    </item>
  </channel>
</rss>

