<?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: metrics name and this year, last year, growth value in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/metrics-name-and-this-year-last-year-growth-value/m-p/1072848#M17579</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Sorry, I mislead you. The metric is some set analysis expression, such as sum({$&amp;lt;item=cost&amp;gt;} amount). The source data is as follows:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;IMG alt="sourceData.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/119542_sourceData.png" style="max-width: 620px; height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CostMetric = sum({&amp;lt;ItemName={'Cost'}, subItemType={"*"}&amp;gt;}, Amount)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PayinMetric = sum({&amp;lt;ItemName={'Payin'},subItemType={"*"}&amp;gt;},Amount)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; BedsMetric = sum({&amp;lt;ItemName={'Beds'}&amp;gt;},Amount)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 28 Mar 2016 12:18:51 GMT</pubDate>
    <dc:creator />
    <dc:date>2016-03-28T12:18:51Z</dc:date>
    <item>
      <title>metrics name and this year, last year, growth value</title>
      <link>https://community.qlik.com/t5/App-Development/metrics-name-and-this-year-last-year-growth-value/m-p/1072840#M17571</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hello everyone:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I have some metrics, such as metric name 1, metric name2. Now I can use pivot table to display metrics name as first column,&lt;/P&gt;&lt;P&gt;and dimension year as follow colums.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; The new&amp;nbsp; pivot table that I want, the first column is metric names, and the second column is this year value, the third column is previous year&amp;nbsp; value, and&amp;nbsp; so on. How can I do it in qlik sense desktop?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Any reply is welcome. Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 26 Mar 2016 23:42:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/metrics-name-and-this-year-last-year-growth-value/m-p/1072840#M17571</guid>
      <dc:creator />
      <dc:date>2016-03-26T23:42:32Z</dc:date>
    </item>
    <item>
      <title>Re: metrics name and this year, last year, growth value</title>
      <link>https://community.qlik.com/t5/App-Development/metrics-name-and-this-year-last-year-growth-value/m-p/1072841#M17572</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not sure what you're asking. Can you post an example in Excel?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Mar 2016 09:22:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/metrics-name-and-this-year-last-year-growth-value/m-p/1072841#M17572</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2016-03-27T09:22:00Z</dc:date>
    </item>
    <item>
      <title>Re: metrics name and this year, last year, growth value</title>
      <link>https://community.qlik.com/t5/App-Development/metrics-name-and-this-year-last-year-growth-value/m-p/1072842#M17573</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If I understood correctly, you have your &lt;EM&gt;expressions (&lt;/EM&gt;your metrics / aggregations) pivoted to the left and the year &lt;EM&gt;dimension&lt;/EM&gt; pivoted to the top, right?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use calculated dimension or set analysis to limit the year dimension, like (for a calculated dimension)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=If( YearField &amp;lt;= Year( Today() ), YearField)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then sort your YearField dimension descending and don't show NULL values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to compare this year's metric with last year's metric, you can use chart inter record functions, like Before() / After() in a pivot table with pivoted dimension (or Above() / Below() with unpivoted dimensions), for example to calculate growth rate for aggregated Metric1 field:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=Sum(Metric1) / After( Sum(Metric1) ) -1&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Mar 2016 11:37:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/metrics-name-and-this-year-last-year-growth-value/m-p/1072842#M17573</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2016-03-27T11:37:10Z</dc:date>
    </item>
    <item>
      <title>Re: metrics name and this year, last year, growth value</title>
      <link>https://community.qlik.com/t5/App-Development/metrics-name-and-this-year-last-year-growth-value/m-p/1072843#M17574</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG alt="7L`DJ361~LOP(IFUO]Z@EPH.png" class="jive-image image-1" src="/legacyfs/online/119512_7L`DJ361~LOP(IFUO]Z@EPH.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; When I select some year(only one), my goal is the picture below.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Mar 2016 21:57:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/metrics-name-and-this-year-last-year-growth-value/m-p/1072843#M17574</guid>
      <dc:creator />
      <dc:date>2016-03-27T21:57:03Z</dc:date>
    </item>
    <item>
      <title>Re: metrics name and this year, last year, growth value</title>
      <link>https://community.qlik.com/t5/App-Development/metrics-name-and-this-year-last-year-growth-value/m-p/1072844#M17575</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Thank you !&lt;/P&gt;&lt;P&gt; Because the metric is dynamic, so Sum(Metric1)&amp;nbsp; is not accessable that I think. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Mar 2016 22:31:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/metrics-name-and-this-year-last-year-growth-value/m-p/1072844#M17575</guid>
      <dc:creator />
      <dc:date>2016-03-27T22:31:09Z</dc:date>
    </item>
    <item>
      <title>Re: metrics name and this year, last year, growth value</title>
      <link>https://community.qlik.com/t5/App-Development/metrics-name-and-this-year-last-year-growth-value/m-p/1072845#M17576</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Source data?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Mar 2016 06:49:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/metrics-name-and-this-year-last-year-growth-value/m-p/1072845#M17576</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2016-03-28T06:49:47Z</dc:date>
    </item>
    <item>
      <title>Re: metrics name and this year, last year, growth value</title>
      <link>https://community.qlik.com/t5/App-Development/metrics-name-and-this-year-last-year-growth-value/m-p/1072846#M17577</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG alt="_I~PEGB~U[00F4[Q@ZQMZ]V.png" class="jive-image image-1" src="/legacyfs/online/119520__I~PEGB~U[00F4[Q@ZQMZ]V.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Mar 2016 07:00:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/metrics-name-and-this-year-last-year-growth-value/m-p/1072846#M17577</guid>
      <dc:creator />
      <dc:date>2016-03-28T07:00:45Z</dc:date>
    </item>
    <item>
      <title>Re: metrics name and this year, last year, growth value</title>
      <link>https://community.qlik.com/t5/App-Development/metrics-name-and-this-year-last-year-growth-value/m-p/1072847#M17578</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use MetricName as dimension and these three expressions as measures:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;This year: sum({&amp;lt;Year={$(=max(Year))}&amp;gt;}Amount)&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Previous year: sum({&amp;lt;Year={$(=max(Year)-1)}&amp;gt;}Amount)&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Growth: num(sum({&amp;lt;Year={$(=max(Year))}&amp;gt;}Amount)/&lt;SPAN style="font-size: 13.3333px;"&gt;sum({&amp;lt;Year={$(=max(Year)-1)}&amp;gt;}Amount)-1,'#,##0.0%')&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Mar 2016 11:19:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/metrics-name-and-this-year-last-year-growth-value/m-p/1072847#M17578</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2016-03-28T11:19:32Z</dc:date>
    </item>
    <item>
      <title>Re: metrics name and this year, last year, growth value</title>
      <link>https://community.qlik.com/t5/App-Development/metrics-name-and-this-year-last-year-growth-value/m-p/1072848#M17579</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Sorry, I mislead you. The metric is some set analysis expression, such as sum({$&amp;lt;item=cost&amp;gt;} amount). The source data is as follows:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;IMG alt="sourceData.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/119542_sourceData.png" style="max-width: 620px; height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CostMetric = sum({&amp;lt;ItemName={'Cost'}, subItemType={"*"}&amp;gt;}, Amount)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PayinMetric = sum({&amp;lt;ItemName={'Payin'},subItemType={"*"}&amp;gt;},Amount)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; BedsMetric = sum({&amp;lt;ItemName={'Beds'}&amp;gt;},Amount)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Mar 2016 12:18:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/metrics-name-and-this-year-last-year-growth-value/m-p/1072848#M17579</guid>
      <dc:creator />
      <dc:date>2016-03-28T12:18:51Z</dc:date>
    </item>
    <item>
      <title>Re: metrics name and this year, last year, growth value</title>
      <link>https://community.qlik.com/t5/App-Development/metrics-name-and-this-year-last-year-growth-value/m-p/1072849#M17580</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then use a synthetic dimension and use pick-match combinations for each of the three measures. You can find a simple example of such an expression here: &lt;A href="https://community.qlik.com/message/367683"&gt;Re: How to make expressions look like dimension???&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Mar 2016 17:01:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/metrics-name-and-this-year-last-year-growth-value/m-p/1072849#M17580</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2016-03-28T17:01:36Z</dc:date>
    </item>
  </channel>
</rss>

