<?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: Re: Re: Set analysis for max week in a month in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Set-analysis-for-max-week-in-a-month/m-p/557264#M208042</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nope, can't see any attachments...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 03 Sep 2013 00:30:28 GMT</pubDate>
    <dc:creator>Oleg_Troyansky</dc:creator>
    <dc:date>2013-09-03T00:30:28Z</dc:date>
    <item>
      <title>Set analysis for max week in a month</title>
      <link>https://community.qlik.com/t5/QlikView/Set-analysis-for-max-week-in-a-month/m-p/557257#M208035</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'd like to have a bar chart by month showing the value for the month, but only of the max week of 4 or 5 weeks in the month. To get the bar chart by month I use this set analysis -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sum({&amp;lt;[Fiscal Year Numeric]={$(=max([Fiscal Year Numeric]))},[RentCal Month]=&amp;gt;}[Rent Account Core Arrears])&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I need to add some set analysis in for [RentCal Week]. If I use max as I have for the Fiscal Year above, I only get one week in the bar chart which isn't what I want. I'd like one week per month.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried to use firstsortedvalue([RentCal Week], [RentCal Month]) but that hasn't worked. I think I need to nest my set analysis for max week inside the month somehow, but not sure how to do this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help would be great,&lt;/P&gt;&lt;P&gt;thanks very much, Charlotte&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 01 Sep 2013 13:50:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-analysis-for-max-week-in-a-month/m-p/557257#M208035</guid>
      <dc:creator>charlotte_qvw</dc:creator>
      <dc:date>2013-09-01T13:50:24Z</dc:date>
    </item>
    <item>
      <title>Re: Set analysis for max week in a month</title>
      <link>https://community.qlik.com/t5/QlikView/Set-analysis-for-max-week-in-a-month/m-p/557258#M208036</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have resolved by using this answer to a previous question from swuehl. But any other answers welcome...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;It seems to me that your maximum DATA per MES and PRODUTO might be static (not depending on selections), so you could add a flag to your data model (add these lines to your script):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LEFT JOIN (Calendario) LOAD&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; MES,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; PRODUTO,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; max(DATA) as DATA,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1 as MAXDATAFLAG&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Resident Calendario group by MES,PRODUTO;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;and use this as expression in your chart with dimensions MES and PRODUTO:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;=sum({&amp;lt;MAXDATAFLAG={1}&amp;gt;} VALOR)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 01 Sep 2013 15:22:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-analysis-for-max-week-in-a-month/m-p/557258#M208036</guid>
      <dc:creator>charlotte_qvw</dc:creator>
      <dc:date>2013-09-01T15:22:40Z</dc:date>
    </item>
    <item>
      <title>Re: Set analysis for max week in a month</title>
      <link>https://community.qlik.com/t5/QlikView/Set-analysis-for-max-week-in-a-month/m-p/557259#M208037</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But in fact my solution above is not going to work because the week I display within the month should be the max week selected. That is if no week selected then - max week in month, otherwise use the week selected. But always display only one week within the month. Thanks for any advice&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 01 Sep 2013 15:56:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-analysis-for-max-week-in-a-month/m-p/557259#M208037</guid>
      <dc:creator>charlotte_qvw</dc:creator>
      <dc:date>2013-09-01T15:56:14Z</dc:date>
    </item>
    <item>
      <title>Re: Set analysis for max week in a month</title>
      <link>https://community.qlik.com/t5/QlikView/Set-analysis-for-max-week-in-a-month/m-p/557260#M208038</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Charlotte,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you should always keep in mind that the Set Analysis condition cannot be sensitive to Dimension values, because it's being calculated globally once per chart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your case, the requirement is the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. If Week number is selected, then show the selected week, or&lt;/P&gt;&lt;P&gt;2. Otherwise use the last week of each month.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Both selections can be expressed in a way that doesn't depend on the Chart Dimensions, so your goal is achievable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'd recommend creating a variable that stores the desired condition, and using the variable in Set Analysis as a Modifier. Something along the following lines (can't guarantee the exact syntax):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET vWeekFilter = '=if(GetSelectedCount(Week) &amp;gt; 0, 'Week = {$(=max(Week))}', 'LastWeekFlag={1}') ';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(in this expression, if any selections of Weeks were made, we use the maximum available week, otherwise we use those weeks marked with the Flag=1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The chart expression will look like the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;=sum({&amp;lt;$(vWeekFilter)&amp;gt;} VALOR)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; 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-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;I'm preparing a new blog post on using variables in dynamically calculated expressions, stay tuned and check my blog side:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; 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-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;A href="http://www.naturalsynergies.com/blog"&gt;www.naturalsynergies.com/blog&lt;/A&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;"&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;"&gt;Oleg Troyansky&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;A href="http://www.masterssummit.com/"&gt;www.masterssummit.com&lt;/A&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;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 01 Sep 2013 16:31:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-analysis-for-max-week-in-a-month/m-p/557260#M208038</guid>
      <dc:creator>Oleg_Troyansky</dc:creator>
      <dc:date>2013-09-01T16:31:05Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Set analysis for max week in a month</title>
      <link>https://community.qlik.com/t5/QlikView/Set-analysis-for-max-week-in-a-month/m-p/557261#M208039</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Oleg,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks very much. I read your blog too - really useful. However I can't get the syntax to actually work! I attach my file, based on the example in your blog. If you have a moment, be most grateful if you could have&amp;nbsp; a look...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;Charlotte&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Sep 2013 21:22:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-analysis-for-max-week-in-a-month/m-p/557261#M208039</guid>
      <dc:creator>charlotte_qvw</dc:creator>
      <dc:date>2013-09-02T21:22:24Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Set analysis for max week in a month</title>
      <link>https://community.qlik.com/t5/QlikView/Set-analysis-for-max-week-in-a-month/m-p/557262#M208040</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Charlotte,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can't see your file - can you try attaching it again?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Oleg&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Sep 2013 22:07:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-analysis-for-max-week-in-a-month/m-p/557262#M208040</guid>
      <dc:creator>Oleg_Troyansky</dc:creator>
      <dc:date>2013-09-02T22:07:13Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Re: Set analysis for max week in a month</title>
      <link>https://community.qlik.com/t5/QlikView/Set-analysis-for-max-week-in-a-month/m-p/557263#M208041</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here it is... Let me know if that's not ok.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Sep 2013 22:15:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-analysis-for-max-week-in-a-month/m-p/557263#M208041</guid>
      <dc:creator>charlotte_qvw</dc:creator>
      <dc:date>2013-09-02T22:15:10Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Re: Set analysis for max week in a month</title>
      <link>https://community.qlik.com/t5/QlikView/Set-analysis-for-max-week-in-a-month/m-p/557264#M208042</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nope, can't see any attachments...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Sep 2013 00:30:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-analysis-for-max-week-in-a-month/m-p/557264#M208042</guid>
      <dc:creator>Oleg_Troyansky</dc:creator>
      <dc:date>2013-09-03T00:30:28Z</dc:date>
    </item>
    <item>
      <title>Re: Set analysis for max week in a month</title>
      <link>https://community.qlik.com/t5/QlikView/Set-analysis-for-max-week-in-a-month/m-p/557265#M208043</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hi Charlotte,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Try to use this formula for your sample QVW:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;=sum&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;GetSelectedCount&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Week&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) &amp;gt; 0,&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;DateCounter&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Week&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;MonthEnd&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Date&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;)) = &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;week&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; 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;DateCounter&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,0))) &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;If to your formula in your first message, it becomes&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;=sum({&amp;lt;[Fiscal Year Numeric]={$(=max([Fiscal Year Numeric]))},[RentCal Month]=&amp;gt;}if(GetSelectedCount([RentCal Week]) &amp;gt; 0,&lt;SPAN style="font-size: 8pt;"&gt;[Rent Account Core Arrears]&lt;/SPAN&gt;,if(Week(MonthEnd(&lt;STRONG style=": ; color: #ff0000; text-decoration: underline;"&gt;Date&lt;/STRONG&gt;)) = week(&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG style="text-decoration: underline;"&gt;Date&lt;/STRONG&gt;&lt;/SPAN&gt;),&lt;SPAN style="font-size: 8pt;"&gt;[Rent Account Core Arrears]&lt;/SPAN&gt;,0))&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;I don't know what's the name of your DATE field, just replace the above &lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;Date &lt;/STRONG&gt;&lt;/SPAN&gt;with your date field's name.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Hope this help.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Herman&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Sep 2013 03:26:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-analysis-for-max-week-in-a-month/m-p/557265#M208043</guid>
      <dc:creator />
      <dc:date>2013-09-03T03:26:24Z</dc:date>
    </item>
    <item>
      <title>Re: Set analysis for max week in a month</title>
      <link>https://community.qlik.com/t5/QlikView/Set-analysis-for-max-week-in-a-month/m-p/557266#M208044</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be like this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PFA&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Sep 2013 04:30:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-analysis-for-max-week-in-a-month/m-p/557266#M208044</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2013-09-03T04:30:39Z</dc:date>
    </item>
    <item>
      <title>Re: Set analysis for max week in a month</title>
      <link>https://community.qlik.com/t5/QlikView/Set-analysis-for-max-week-in-a-month/m-p/557267#M208045</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oleg, I don't understand why you can't see the file... I checked when I wasn't logged in and it was ok for me then too. Can you see tresesco's file below? But don't worry too much. I think I can maybe sell the customer the Last Week in Month Flag. Going to try today anyway!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Sep 2013 05:38:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-analysis-for-max-week-in-a-month/m-p/557267#M208045</guid>
      <dc:creator>charlotte_qvw</dc:creator>
      <dc:date>2013-09-03T05:38:44Z</dc:date>
    </item>
    <item>
      <title>Re: Set analysis for max week in a month</title>
      <link>https://community.qlik.com/t5/QlikView/Set-analysis-for-max-week-in-a-month/m-p/557268#M208046</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Charlotte,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you try my earlier attached file?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Sep 2013 05:58:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-analysis-for-max-week-in-a-month/m-p/557268#M208046</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2013-09-03T05:58:35Z</dc:date>
    </item>
    <item>
      <title>Re: Set analysis for max week in a month</title>
      <link>https://community.qlik.com/t5/QlikView/Set-analysis-for-max-week-in-a-month/m-p/557269#M208047</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;just checking it out right now!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Sep 2013 06:02:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-analysis-for-max-week-in-a-month/m-p/557269#M208047</guid>
      <dc:creator>charlotte_qvw</dc:creator>
      <dc:date>2013-09-03T06:02:49Z</dc:date>
    </item>
    <item>
      <title>Re: Set analysis for max week in a month</title>
      <link>https://community.qlik.com/t5/QlikView/Set-analysis-for-max-week-in-a-month/m-p/557270#M208048</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This looks really helpful. I need to translate it into the real world on site today. Will let you know. Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Sep 2013 06:12:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-analysis-for-max-week-in-a-month/m-p/557270#M208048</guid>
      <dc:creator>charlotte_qvw</dc:creator>
      <dc:date>2013-09-03T06:12:41Z</dc:date>
    </item>
  </channel>
</rss>

