<?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 KPI not matching straight table in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/KPI-not-matching-straight-table/m-p/1926052#M76232</link>
    <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;I have a KPI for calculating number of orders.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;=Count ({$&amp;lt;Status={Finished}&amp;gt;} ID) - This KPI gives 25900&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am creating a table with 28 columns and no filter applied. But if I download the table into excel I can see only 20875 records. I have a dimension called status where I am using the expression if(Status = 'Finished', 'Completed'). I am not writing any expression in other dimensions.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I want to know where I am losing around 5000 records.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please do help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 04 May 2022 08:24:18 GMT</pubDate>
    <dc:creator>qlikuser22</dc:creator>
    <dc:date>2022-05-04T08:24:18Z</dc:date>
    <item>
      <title>KPI not matching straight table</title>
      <link>https://community.qlik.com/t5/App-Development/KPI-not-matching-straight-table/m-p/1926052#M76232</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;I have a KPI for calculating number of orders.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;=Count ({$&amp;lt;Status={Finished}&amp;gt;} ID) - This KPI gives 25900&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am creating a table with 28 columns and no filter applied. But if I download the table into excel I can see only 20875 records. I have a dimension called status where I am using the expression if(Status = 'Finished', 'Completed'). I am not writing any expression in other dimensions.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I want to know where I am losing around 5000 records.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please do help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 May 2022 08:24:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/KPI-not-matching-straight-table/m-p/1926052#M76232</guid>
      <dc:creator>qlikuser22</dc:creator>
      <dc:date>2022-05-04T08:24:18Z</dc:date>
    </item>
    <item>
      <title>Re: KPI not matching straight table</title>
      <link>https://community.qlik.com/t5/App-Development/KPI-not-matching-straight-table/m-p/1926078#M76233</link>
      <description>&lt;P&gt;Hi Qlikuser22,&lt;/P&gt;
&lt;P&gt;You have to aggregate the data by these 28 dimensions using Aggr and then apply count function as below. Then you would get exact result what are you getting in straight table.&lt;/P&gt;
&lt;P&gt;Aggr(&lt;SPAN&gt;Count ({$&amp;lt;Status={Finished}&amp;gt;} ID), your 28 dimensions seperated by comma). I hope this helps.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 04 May 2022 09:03:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/KPI-not-matching-straight-table/m-p/1926078#M76233</guid>
      <dc:creator>vish123</dc:creator>
      <dc:date>2022-05-04T09:03:31Z</dc:date>
    </item>
    <item>
      <title>Re: KPI not matching straight table</title>
      <link>https://community.qlik.com/t5/App-Development/KPI-not-matching-straight-table/m-p/1926079#M76234</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Sum(Aggr(&lt;SPAN&gt;Count ({$&amp;lt;Status={Finished}&amp;gt;} ID)&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;STRONG&gt;,dimensions seperated by comma))&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 04 May 2022 09:05:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/KPI-not-matching-straight-table/m-p/1926079#M76234</guid>
      <dc:creator>vish123</dc:creator>
      <dc:date>2022-05-04T09:05:13Z</dc:date>
    </item>
    <item>
      <title>Re: KPI not matching straight table</title>
      <link>https://community.qlik.com/t5/App-Development/KPI-not-matching-straight-table/m-p/1926081#M76235</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/89599"&gt;@vish123&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for the quick response.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Should I use this expression in a table for Status dimension?&lt;/P&gt;
&lt;P&gt;Because, my KPI is correct with 26000 records. I want the same in my table .&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please let me know if I should write the expression in table Status dimension??&lt;/P&gt;
&lt;P&gt;Thanks.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 May 2022 09:11:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/KPI-not-matching-straight-table/m-p/1926081#M76235</guid>
      <dc:creator>qlikuser22</dc:creator>
      <dc:date>2022-05-04T09:11:57Z</dc:date>
    </item>
    <item>
      <title>Re: KPI not matching straight table</title>
      <link>https://community.qlik.com/t5/App-Development/KPI-not-matching-straight-table/m-p/1926084#M76236</link>
      <description>&lt;P&gt;Hi Qlikuser22,&lt;/P&gt;
&lt;P&gt;If that is the case, you can ignore all dimensions in table by using {1} in set analysis of count expression.&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Count (1{$&amp;lt;Status={Finished}&amp;gt;} ID).. try this&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 04 May 2022 09:11:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/KPI-not-matching-straight-table/m-p/1926084#M76236</guid>
      <dc:creator>vish123</dc:creator>
      <dc:date>2022-05-04T09:11:27Z</dc:date>
    </item>
    <item>
      <title>Re: KPI not matching straight table</title>
      <link>https://community.qlik.com/t5/App-Development/KPI-not-matching-straight-table/m-p/1926087#M76237</link>
      <description>&lt;P&gt;Try this as well .&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Count (Total {$&amp;lt;Status={Finished}&amp;gt;} ID)&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 04 May 2022 09:13:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/KPI-not-matching-straight-table/m-p/1926087#M76237</guid>
      <dc:creator>vish123</dc:creator>
      <dc:date>2022-05-04T09:13:10Z</dc:date>
    </item>
    <item>
      <title>Re: KPI not matching straight table</title>
      <link>https://community.qlik.com/t5/App-Development/KPI-not-matching-straight-table/m-p/1926094#M76239</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;Thanks, this gives the KPI correct. But how do I get the number of rows in the table matching with KPI value?&lt;/P&gt;</description>
      <pubDate>Wed, 04 May 2022 09:16:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/KPI-not-matching-straight-table/m-p/1926094#M76239</guid>
      <dc:creator>qlikuser22</dc:creator>
      <dc:date>2022-05-04T09:16:43Z</dc:date>
    </item>
    <item>
      <title>Re: KPI not matching straight table</title>
      <link>https://community.qlik.com/t5/App-Development/KPI-not-matching-straight-table/m-p/1926098#M76240</link>
      <description>&lt;P&gt;Hi Qlikuser22,&lt;/P&gt;
&lt;P&gt;Can you please give me screen shot where you wanna show number of records in a table? what expression you are trying to use within the table?&lt;/P&gt;</description>
      <pubDate>Wed, 04 May 2022 09:19:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/KPI-not-matching-straight-table/m-p/1926098#M76240</guid>
      <dc:creator>vish123</dc:creator>
      <dc:date>2022-05-04T09:19:07Z</dc:date>
    </item>
    <item>
      <title>Re: KPI not matching straight table</title>
      <link>https://community.qlik.com/t5/App-Development/KPI-not-matching-straight-table/m-p/1926105#M76242</link>
      <description>&lt;P&gt;HI&lt;/P&gt;
&lt;P&gt;This is my KPI. I am just creating a table with 28 dimensions like&lt;/P&gt;
&lt;P&gt;Customer Name&lt;/P&gt;
&lt;P&gt;ID&lt;/P&gt;
&lt;P&gt;Order No&lt;/P&gt;
&lt;P&gt;Starting Date&lt;/P&gt;
&lt;P&gt;Working Date&lt;/P&gt;
&lt;P&gt;Completed Date&lt;/P&gt;
&lt;P&gt;Status&amp;nbsp; // I am writing a single expression here as if(Staus='Finished','Finished')&lt;/P&gt;
&lt;P&gt;Address&amp;nbsp;&lt;/P&gt;
&lt;P&gt;City&lt;/P&gt;
&lt;P&gt;Country&lt;/P&gt;
&lt;P&gt;and so on..&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="qlikuser22_0-1651656157693.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/78598i8AEA7F5AD44B73E9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="qlikuser22_0-1651656157693.png" alt="qlikuser22_0-1651656157693.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Here, my KPI is correct with 30943. I want my table should also have 30943 rows.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks a lot&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 May 2022 09:24:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/KPI-not-matching-straight-table/m-p/1926105#M76242</guid>
      <dc:creator>qlikuser22</dc:creator>
      <dc:date>2022-05-04T09:24:47Z</dc:date>
    </item>
    <item>
      <title>Re: KPI not matching straight table</title>
      <link>https://community.qlik.com/t5/App-Development/KPI-not-matching-straight-table/m-p/1926111#M76244</link>
      <description>&lt;P&gt;Hi Qlikuser22,&lt;/P&gt;
&lt;P&gt;Any expressions in a straight table such as count or sum will be calculated based on dimensions added. In this case i suggest to check for any null values or add all other dimensions to get the desired output. Count expression is giving the count for overall dimensions. Hope this helps.&lt;/P&gt;
&lt;P&gt;Please close this thread if you feel helpful. so that others can use it as solution.&lt;/P&gt;</description>
      <pubDate>Wed, 04 May 2022 09:30:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/KPI-not-matching-straight-table/m-p/1926111#M76244</guid>
      <dc:creator>vish123</dc:creator>
      <dc:date>2022-05-04T09:30:39Z</dc:date>
    </item>
    <item>
      <title>Re: KPI not matching straight table</title>
      <link>https://community.qlik.com/t5/App-Development/KPI-not-matching-straight-table/m-p/1926114#M76245</link>
      <description>&lt;P&gt;Perfect. I understood that all the dimensions has to be added to match with KPI value.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Wed, 04 May 2022 09:33:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/KPI-not-matching-straight-table/m-p/1926114#M76245</guid>
      <dc:creator>qlikuser22</dc:creator>
      <dc:date>2022-05-04T09:33:03Z</dc:date>
    </item>
  </channel>
</rss>

