<?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: Show all even when date is selected in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Show-all-even-when-date-is-selected/m-p/1140805#M917227</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just use the expression with the set analysis and an additional dimension (in addition to Service field dimension) like YearMonth to group your results.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use these two dimensions and the expression in a pivot table chart, then pivot the YearMonth dimension to the top.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you don't have this YearMonth dimension field in your model, you can create a calculated dimension like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=MonthName(DateField)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 13 May 2016 13:15:28 GMT</pubDate>
    <dc:creator>swuehl</dc:creator>
    <dc:date>2016-05-13T13:15:28Z</dc:date>
    <item>
      <title>Show all even when date is selected</title>
      <link>https://community.qlik.com/t5/QlikView/Show-all-even-when-date-is-selected/m-p/1140797#M917219</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is a strange question ... I know before I even start but ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a page with calendar&amp;nbsp; that shows the relevant data assigned to Year and Month.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However on this page, I need a chart to show the full year so far (and as the months of this year continue, the chart expands with the year and month also. But if the Year selected is 2016 and the Month is May, I don't want this chart to show only 2016 and May, it should show the full year so far while the other data on the page does show 2016 and May.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I only want this one chart to show the full years data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-all-even-when-date-is-selected/m-p/1140797#M917219</guid>
      <dc:creator>bobbydave</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Show all even when date is selected</title>
      <link>https://community.qlik.com/t5/QlikView/Show-all-even-when-date-is-selected/m-p/1140798#M917220</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could with set analysis ignore or overwrite selections - maybe something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sum({&amp;lt; Month = &amp;gt;} Value)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;will ignore selections in Month.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 May 2016 10:26:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-all-even-when-date-is-selected/m-p/1140798#M917220</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2016-05-13T10:26:02Z</dc:date>
    </item>
    <item>
      <title>Re: Show all even when date is selected</title>
      <link>https://community.qlik.com/t5/QlikView/Show-all-even-when-date-is-selected/m-p/1140799#M917221</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be use a set analysis to restrict the chart to show the year so far:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;{&amp;lt;Date = {"$(='&amp;gt;=' &amp;amp; Date(YearStart(Today()), 'DateFieldFormatHere') &amp;amp; '&amp;lt;=' &amp;amp; Date(Today(), 'DateFieldFormatHere'))"}&lt;SPAN style="color: #ff0000;"&gt;, Month, Year&lt;/SPAN&gt;&amp;gt;}&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UPDATE: Added the set analysis to ignore selection in Month and Year fields&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 May 2016 10:26:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-all-even-when-date-is-selected/m-p/1140799#M917221</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-05-13T10:26:03Z</dc:date>
    </item>
    <item>
      <title>Re: Show all even when date is selected</title>
      <link>https://community.qlik.com/t5/QlikView/Show-all-even-when-date-is-selected/m-p/1140800#M917222</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use set analysis to change the scope of your aggregation,something like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=Sum({&amp;lt;DateField = {"&amp;gt;=$(=YearStart(Max(DateField)))&amp;lt;=$(=Date(Max(DateField)))"}, MonthField= &amp;gt;} Value)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 May 2016 10:27:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-all-even-when-date-is-selected/m-p/1140800#M917222</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2016-05-13T10:27:09Z</dc:date>
    </item>
    <item>
      <title>Re: Show all even when date is selected</title>
      <link>https://community.qlik.com/t5/QlikView/Show-all-even-when-date-is-selected/m-p/1140801#M917223</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See also for more details:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://iqlik.wordpress.com/2010/11/27/the-magic-of-set-analysis-point-in-time-reporting/" title="http://iqlik.wordpress.com/2010/11/27/the-magic-of-set-analysis-point-in-time-reporting/"&gt;The Magic of Set Analysis - Point In Time Reporting • Blog • AfterSync&lt;/A&gt;‌&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-blogpost/4394"&gt;Dates in Set Analysis&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 May 2016 10:28:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-all-even-when-date-is-selected/m-p/1140801#M917223</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2016-05-13T10:28:37Z</dc:date>
    </item>
    <item>
      <title>Re: Show all even when date is selected</title>
      <link>https://community.qlik.com/t5/QlikView/Show-all-even-when-date-is-selected/m-p/1140802#M917224</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, this will show me a dimension of &amp;gt;=2016-Jan &amp;lt;= 2016-May&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I want it to show&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2016-Jan&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2016- Feb&amp;nbsp;&amp;nbsp;&amp;nbsp; 2016-Mar&amp;nbsp;&amp;nbsp;&amp;nbsp; 2016- Apr&amp;nbsp;&amp;nbsp;&amp;nbsp; 2016-May&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; x&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; x&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; x&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; x&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; x&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 May 2016 12:32:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-all-even-when-date-is-selected/m-p/1140802#M917224</guid>
      <dc:creator>bobbydave</dc:creator>
      <dc:date>2016-05-13T12:32:40Z</dc:date>
    </item>
    <item>
      <title>Re: Show all even when date is selected</title>
      <link>https://community.qlik.com/t5/QlikView/Show-all-even-when-date-is-selected/m-p/1140803#M917225</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure I understand this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;bobbydave wrote:&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;But I want it to show&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;2016-Jan&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2016- Feb&amp;nbsp;&amp;nbsp;&amp;nbsp; 2016-Mar&amp;nbsp;&amp;nbsp;&amp;nbsp; 2016- Apr&amp;nbsp;&amp;nbsp;&amp;nbsp; 2016-May&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; x&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; x&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; x&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; x&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; x&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 May 2016 12:35:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-all-even-when-date-is-selected/m-p/1140803#M917225</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-05-13T12:35:29Z</dc:date>
    </item>
    <item>
      <title>Re: Show all even when date is selected</title>
      <link>https://community.qlik.com/t5/QlikView/Show-all-even-when-date-is-selected/m-p/1140804#M917226</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG class="jive-image image-4" src="https://community.qlik.com/legacyfs/online/124531_pastedImage_0.png" style="max-height: 900px; max-width: 1200px;" /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="124529" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/124529_pastedImage_2.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;P&gt;This shows the values for 2016 March but assume its May (I haven't loaded April or May data yet so it hasn't picked it up). I am more concerned with the last value 0.86, 6.78 etc&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So what I want to do now is create another chart to show previous months from the start of the year&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="124530" class="jive-image image-3" src="https://community.qlik.com/legacyfs/online/124530_pastedImage_3.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;P&gt;so this would look like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Service&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2016-Jan&amp;nbsp;&amp;nbsp;&amp;nbsp; 2016-Feb&amp;nbsp;&amp;nbsp; 2016-Mar&amp;nbsp;&amp;nbsp;&amp;nbsp; 2016-Apr&amp;nbsp;&amp;nbsp;&amp;nbsp; 2016-May&lt;/P&gt;&lt;P&gt;ValueA&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1.1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.4&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.81&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.12&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.86&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 May 2016 12:43:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-all-even-when-date-is-selected/m-p/1140804#M917226</guid>
      <dc:creator>bobbydave</dc:creator>
      <dc:date>2016-05-13T12:43:59Z</dc:date>
    </item>
    <item>
      <title>Re: Show all even when date is selected</title>
      <link>https://community.qlik.com/t5/QlikView/Show-all-even-when-date-is-selected/m-p/1140805#M917227</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just use the expression with the set analysis and an additional dimension (in addition to Service field dimension) like YearMonth to group your results.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use these two dimensions and the expression in a pivot table chart, then pivot the YearMonth dimension to the top.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you don't have this YearMonth dimension field in your model, you can create a calculated dimension like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=MonthName(DateField)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 May 2016 13:15:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-all-even-when-date-is-selected/m-p/1140805#M917227</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2016-05-13T13:15:28Z</dc:date>
    </item>
    <item>
      <title>Re: Show all even when date is selected</title>
      <link>https://community.qlik.com/t5/QlikView/Show-all-even-when-date-is-selected/m-p/1140806#M917228</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Find attached a dummy application of what I am trying to do.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When it shows whatever date I have selected, I don't want Average Speed table to change the date.&lt;/P&gt;&lt;P&gt;I want it still to show the full year even though a date is selected.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Each time I load new date for a new month, the Average Speed table will then add that new month on e.g for April and May, it would show Jan 2016, Feb 2016, March 2016, April and May and when a Year and Month is selected at the top, the Average Speed table would remain unchanged ie all months would still appear.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 May 2016 10:24:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-all-even-when-date-is-selected/m-p/1140806#M917228</guid>
      <dc:creator>bobbydave</dc:creator>
      <dc:date>2016-05-16T10:24:27Z</dc:date>
    </item>
    <item>
      <title>Re: Show all even when date is selected</title>
      <link>https://community.qlik.com/t5/QlikView/Show-all-even-when-date-is-selected/m-p/1140807#M917229</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you check the attached&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 May 2016 11:14:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-all-even-when-date-is-selected/m-p/1140807#M917229</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-05-16T11:14:00Z</dc:date>
    </item>
    <item>
      <title>Re: Show all even when date is selected</title>
      <link>https://community.qlik.com/t5/QlikView/Show-all-even-when-date-is-selected/m-p/1140808#M917230</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunny,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am definitely not explaining myself correctly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've removed the other tables and left the only table I need.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So right now I have selected 2016 March in the application.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the Average Speed table, I want ALL of the Average Speed for 2016 to appear even though I have selected the dates&amp;nbsp; 2016 March in the calendar.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Average Speed should have the current years data appearing from Jan to today.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 May 2016 11:22:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-all-even-when-date-is-selected/m-p/1140808#M917230</guid>
      <dc:creator>bobbydave</dc:creator>
      <dc:date>2016-05-16T11:22:10Z</dc:date>
    </item>
    <item>
      <title>Re: Show all even when date is selected</title>
      <link>https://community.qlik.com/t5/QlikView/Show-all-even-when-date-is-selected/m-p/1140809#M917231</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try now and see if this is what you want. I have created two tables, Average Speed 1 is always going to show current year's average speed no matter what year you select in your application. Average Speed 2 will change based on your selection in Year field (but will still show the complete year&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Average Speed 1 Expression:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Num((Count({&amp;lt;group= {'AXA_LPI:Service_Desk', &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; 'AXA_LPI:New_User_Setup', &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; 'AXA_LPI:New_TIA_User_Setup', &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; 'AXA_LPI:VTC_Requests',&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; 'AXA_LPI:TIA_ROFC'}, Year = {$(=Year(Today()))}, Month, Date&amp;gt;} TV_Number)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;)/(Num(Sum({&amp;lt;group= {'AXA_LPI:Service_Desk', &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; 'AXA_LPI:New_User_Setup', &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; 'AXA_LPI:New_TIA_User_Setup', &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; 'AXA_LPI:VTC_Requests',&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; 'AXA_LPI:TIA_ROFC'}, Year = {$(=Year(Today()))}, Month, Date&amp;gt;} TV_Open_Days), '#.##')&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;), '#.##')&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Average Speed 2 Expression:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Num((Count({&amp;lt;group= {'AXA_LPI:Service_Desk', &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; 'AXA_LPI:New_User_Setup', &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; 'AXA_LPI:New_TIA_User_Setup', &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; 'AXA_LPI:VTC_Requests',&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; 'AXA_LPI:TIA_ROFC'}, Year = {$(=Max(Year))}, Month&amp;gt;} TV_Number)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;)/(Num(Sum({&amp;lt;group= {'AXA_LPI:Service_Desk', &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; 'AXA_LPI:New_User_Setup', &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; 'AXA_LPI:New_TIA_User_Setup', &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; 'AXA_LPI:VTC_Requests',&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; 'AXA_LPI:TIA_ROFC'}, Year = {$(=Max(Year))}, Month&amp;gt;} TV_Open_Days), '#.##')&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;), '#.##')&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 May 2016 11:29:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-all-even-when-date-is-selected/m-p/1140809#M917231</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-05-16T11:29:21Z</dc:date>
    </item>
    <item>
      <title>Re: Show all even when date is selected</title>
      <link>https://community.qlik.com/t5/QlikView/Show-all-even-when-date-is-selected/m-p/1140810#M917232</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunny,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks so much.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Average Speed Two works perfect now once I add YearMonth in as a dimension.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is what I was trying to do.&lt;/P&gt;&lt;P&gt;Thanks so much&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 May 2016 11:37:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-all-even-when-date-is-selected/m-p/1140810#M917232</guid>
      <dc:creator>bobbydave</dc:creator>
      <dc:date>2016-05-16T11:37:53Z</dc:date>
    </item>
    <item>
      <title>Re: Show all even when date is selected</title>
      <link>https://community.qlik.com/t5/QlikView/Show-all-even-when-date-is-selected/m-p/1140811#M917233</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So is everything working now? If it is, I would request you to close this thread by marking correct and helpful responses.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Sunny&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 May 2016 11:50:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-all-even-when-date-is-selected/m-p/1140811#M917233</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-05-16T11:50:43Z</dc:date>
    </item>
  </channel>
</rss>

