<?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 Regarding  Metrics as rows in QlikSense in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Regarding-Metrics-as-rows-in-QlikSense/m-p/2060244#M87005</link>
    <description>&lt;P&gt;Hello Friends,&lt;/P&gt;
&lt;P&gt;Appreciate your time. We have a requirement having metrics in rows something like below image&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SK111_3-1681412265035.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/104858i4AA2224BCCC22D61/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SK111_3-1681412265035.png" alt="SK111_3-1681412265035.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The app is reduced by section access for each trader, There is a chart similar to it currently in excel we are now converting it using QlikSense, Appreciate your feedback!&lt;/P&gt;
&lt;P&gt;Thank you!&lt;/P&gt;</description>
    <pubDate>Thu, 13 Apr 2023 18:58:57 GMT</pubDate>
    <dc:creator>SK111</dc:creator>
    <dc:date>2023-04-13T18:58:57Z</dc:date>
    <item>
      <title>Regarding  Metrics as rows in QlikSense</title>
      <link>https://community.qlik.com/t5/App-Development/Regarding-Metrics-as-rows-in-QlikSense/m-p/2060244#M87005</link>
      <description>&lt;P&gt;Hello Friends,&lt;/P&gt;
&lt;P&gt;Appreciate your time. We have a requirement having metrics in rows something like below image&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SK111_3-1681412265035.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/104858i4AA2224BCCC22D61/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SK111_3-1681412265035.png" alt="SK111_3-1681412265035.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The app is reduced by section access for each trader, There is a chart similar to it currently in excel we are now converting it using QlikSense, Appreciate your feedback!&lt;/P&gt;
&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Thu, 13 Apr 2023 18:58:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Regarding-Metrics-as-rows-in-QlikSense/m-p/2060244#M87005</guid>
      <dc:creator>SK111</dc:creator>
      <dc:date>2023-04-13T18:58:57Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding  Metrics as rows in QlikSense</title>
      <link>https://community.qlik.com/t5/App-Development/Regarding-Metrics-as-rows-in-QlikSense/m-p/2060481#M87015</link>
      <description>&lt;P&gt;for Example in straight table&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;create a calculated dimension with value list&amp;nbsp;&lt;/P&gt;
&lt;P&gt;for example :&amp;nbsp;&lt;/P&gt;
&lt;P&gt;=ValueList('metric1','metric2','metric3')&lt;/P&gt;
&lt;P&gt;then add mesure like this&lt;/P&gt;
&lt;P&gt;if(&lt;BR /&gt;ValueList('metric1','metric2','metric3') = 'metric1' ,&lt;BR /&gt;MesureMetric1,&lt;/P&gt;
&lt;P&gt;if(&lt;BR /&gt;ValueList('metric1','metric2','metric3') = 'metric2' ,&lt;BR /&gt;MesureMetric2,&lt;/P&gt;
&lt;P&gt;if(&lt;BR /&gt;ValueList('metric1','metric2','metric3') = 'metric3' ,&lt;BR /&gt;MesureMetric3,&lt;/P&gt;
&lt;P&gt;)))&lt;/P&gt;
&lt;P&gt;repeat the same for next colomn regular etc&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope it helps&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Apr 2023 10:51:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Regarding-Metrics-as-rows-in-QlikSense/m-p/2060481#M87015</guid>
      <dc:creator>brunobertels</dc:creator>
      <dc:date>2023-04-14T10:51:45Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding  Metrics as rows in QlikSense</title>
      <link>https://community.qlik.com/t5/App-Development/Regarding-Metrics-as-rows-in-QlikSense/m-p/2060553#M87017</link>
      <description>&lt;P&gt;Thanks for your reply.&amp;nbsp; Below is how I tried.&lt;/P&gt;
&lt;P&gt;dimesion:&amp;nbsp;=valuelist('non_regular','regular','total')&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;expression:&lt;/P&gt;
&lt;P&gt;If(Valuelist('non_regular','regular','total')='non_regular', sum([total sales non regular]),&lt;/P&gt;
&lt;P&gt;If(Valuelist('non_regular','regular','total')='regular', (sum([total sales regular]),&lt;/P&gt;
&lt;P&gt;If(Valuelist('non_regular','regular','total')='total', sum([total sales]))))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This renders the first row and I could get some thing like below using pivot table&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SK111_0-1681480887778.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/104935iBFDB021BCF20C367/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SK111_0-1681480887778.png" alt="SK111_0-1681480887778.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am looking for a way to get the rest of the metrics rows like sales %,cat sales and so on.,&lt;/P&gt;
&lt;P&gt;the below ones&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SK111_1-1681480927946.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/104936iA2F4178E0AD3E427/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SK111_1-1681480927946.png" alt="SK111_1-1681480927946.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Fri, 14 Apr 2023 14:02:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Regarding-Metrics-as-rows-in-QlikSense/m-p/2060553#M87017</guid>
      <dc:creator>SK111</dc:creator>
      <dc:date>2023-04-14T14:02:16Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding  Metrics as rows in QlikSense</title>
      <link>https://community.qlik.com/t5/App-Development/Regarding-Metrics-as-rows-in-QlikSense/m-p/2060558#M87019</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/209953"&gt;@SK111&lt;/a&gt;&amp;nbsp; Create a table with below Dimension and measure&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;Dimension:
=ValueList('Trader -A Sales','Sales%','Cat Sales','Cat Sales%','Order Sales','Order Sales%')

Measure: (Total)
=pick(match(ValueList('Trader -A Sales','Sales%','Cat Sales','Cat Sales%','Order Sales','Order Sales%'),
'Trader -A Sales','Sales%','Cat Sales','Cat Sales%','Order Sales','Order Sales%'),
Trader -A Sales- Total Expression,
Sales%-Total Expression,
Cat Sales- Total Expression,
Cat Sales%- Total Expression,
Order Sales- Total Expression,
Order Sales%- Total Expression)

Measure: (Regular)
=pick(match(ValueList('Trader -A Sales','Sales%','Cat Sales','Cat Sales%','Order Sales','Order Sales%'),
'Trader -A Sales','Sales%','Cat Sales','Cat Sales%','Order Sales','Order Sales%'),
Trader -A Sales- Regular Expression,
Sales%-Regular Expression,
Cat Sales- Regular Expression,
Cat Sales%- Regular Expression,
Order Sales- Regular Expression,
Order Sales%- Regular Expression)
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Apr 2023 14:16:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Regarding-Metrics-as-rows-in-QlikSense/m-p/2060558#M87019</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2023-04-14T14:16:50Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding  Metrics as rows in QlikSense</title>
      <link>https://community.qlik.com/t5/App-Development/Regarding-Metrics-as-rows-in-QlikSense/m-p/2060629#M87025</link>
      <description>&lt;P&gt;Great!, it worked:)&lt;/P&gt;
&lt;P&gt;thanks a lot!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Apr 2023 18:10:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Regarding-Metrics-as-rows-in-QlikSense/m-p/2060629#M87025</guid>
      <dc:creator>SK111</dc:creator>
      <dc:date>2023-04-14T18:10:29Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding  Metrics as rows in QlikSense</title>
      <link>https://community.qlik.com/t5/App-Development/Regarding-Metrics-as-rows-in-QlikSense/m-p/2061008#M87040</link>
      <description>&lt;P&gt;If I replace it with a Vizlib KPI Designer , will it be good with respect to performance vs the above solution.&lt;/P&gt;
&lt;P&gt;The above one has pick and match , since all the metric calculations are in fly, will that be another good option to consider KPI.&lt;/P&gt;
&lt;P&gt;Also, the metric Sales % should have a background color based on the metric values&lt;/P&gt;
&lt;P&gt;the metric Order Sales should have an up or a down arrow based on the metrics values&lt;/P&gt;
&lt;P&gt;So overall looks like KPI Designer is another good solution too.,&lt;/P&gt;
&lt;P&gt;Could you kindly have your thoughts.&lt;/P&gt;
&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Mon, 17 Apr 2023 13:25:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Regarding-Metrics-as-rows-in-QlikSense/m-p/2061008#M87040</guid>
      <dc:creator>SK111</dc:creator>
      <dc:date>2023-04-17T13:25:53Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding  Metrics as rows in QlikSense</title>
      <link>https://community.qlik.com/t5/App-Development/Regarding-Metrics-as-rows-in-QlikSense/m-p/2061126#M87051</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/209953"&gt;@SK111&lt;/a&gt;&amp;nbsp; with pick match approach also you can do background colour and arrows. I have never used vizlib extensions in any of my project&amp;nbsp; due to restrictions . If it is easy to implement using extension you should try it out, but extension also have performance impact because it has overhead of loading into browser whenever it is referenced. I always prefer using native object unless it is not all possible to achieve any requirement.&amp;nbsp; You can note performance using both the options and then go with best approach.&lt;/P&gt;</description>
      <pubDate>Mon, 17 Apr 2023 15:54:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Regarding-Metrics-as-rows-in-QlikSense/m-p/2061126#M87051</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2023-04-17T15:54:29Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding  Metrics as rows in QlikSense</title>
      <link>https://community.qlik.com/t5/App-Development/Regarding-Metrics-as-rows-in-QlikSense/m-p/2061135#M87052</link>
      <description>&lt;P&gt;sounds good, let me play more into it and choose the best .,appreciate it! Thank you!&lt;/P&gt;</description>
      <pubDate>Mon, 17 Apr 2023 16:11:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Regarding-Metrics-as-rows-in-QlikSense/m-p/2061135#M87052</guid>
      <dc:creator>SK111</dc:creator>
      <dc:date>2023-04-17T16:11:43Z</dc:date>
    </item>
  </channel>
</rss>

