<?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: Independent Summary count for each customer based on percentage from straight table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Independent-Summary-count-for-each-customer-based-on-percentage/m-p/1692591#M727140</link>
    <description>&lt;P&gt;Hi Frank,&lt;/P&gt;&lt;P&gt;Thanks for the reply. We cannot bring the data inside INLINE table since the data would growing&amp;nbsp; in the input excel. Actually Customer and Identifier is the only dimension available from the input sources and Utilization field is actually a calculated dimension.&amp;nbsp; I just tried to create a pivot table and derived the count using set analysis however i could not retrieve the count between 50 to 70 and 70 to 90.&amp;nbsp; Is that possible?&lt;/P&gt;&lt;P&gt;Attached the screenshot.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 10 Apr 2020 07:48:49 GMT</pubDate>
    <dc:creator>aurly123</dc:creator>
    <dc:date>2020-04-10T07:48:49Z</dc:date>
    <item>
      <title>Independent Summary count for each customer based on percentage from straight table</title>
      <link>https://community.qlik.com/t5/QlikView/Independent-Summary-count-for-each-customer-based-on-percentage/m-p/1692577#M727137</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I want to get the count of each customer based on the utilization percentage and group the count under each percentage range (ie, &amp;lt;50% , 50-70%, 70-90% and &amp;gt;90%). Attached the input data and straight table.. Please share your inputs on how to get this designed. Thanks!&lt;/P&gt;&lt;P&gt;Attached the screenshot&amp;nbsp; (count may not be accurate in the screenshot)&lt;/P&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 00:51:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Independent-Summary-count-for-each-customer-based-on-percentage/m-p/1692577#M727137</guid>
      <dc:creator>aurly123</dc:creator>
      <dc:date>2024-11-16T00:51:52Z</dc:date>
    </item>
    <item>
      <title>Re: Independent Summary count for each customer based on percentage from straight table</title>
      <link>https://community.qlik.com/t5/QlikView/Independent-Summary-count-for-each-customer-based-on-percentage/m-p/1692586#M727138</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Script&lt;/STRONG&gt;:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;Load *, if(Utilisation%&amp;lt;0.5,'&amp;lt;50%',
			if(Utilisation%&amp;gt;=0.5 and Utilisation%&amp;lt;=0.7 ,'50 to 70%',
				if(Utilisation%&amp;gt;=0.7 and Utilisation%&amp;lt;=0.9 ,'70 to 90%','&amp;gt;90%'))) as Interval;
LOAD * INLINE [
    Customer, Identifier, Utilisation%
    BANK OF CHINA, A1, 0.5
    BANK OF CHINA, A2, 0.69
    BANK OF CHINA, A3, 0.89
    BANK OF CHINA, A4, 0.99
    STATE BANK, F1, 0.11
    STATE BANK, F2, 0.56
    STATE BANK, F3, 0.77
    STATE BANK, F4, 0.9
    WHO, G1, 0.25
    WHO, G2, 0.55
    WHO, G3, 0.75
    WHO, G4, 0.92
    BOA, N1, 0.33
    BOA, N2, 0.63
    BOA, N3, 0.78
    BOA, N4, 0.96
    
];&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Pivottable&lt;/STRONG&gt;:&lt;/P&gt;&lt;P&gt;Dim1 = Interval&lt;/P&gt;&lt;P&gt;Dim2 = Customer&lt;/P&gt;&lt;P&gt;Expression:&amp;nbsp; count(Utilisation%)&lt;/P&gt;&lt;P&gt;(Drag the Customer dimension to the upper right untill the blue horizontal line appears)&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Unbenannt.png" style="width: 460px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/31638i917C3FD63E9853FB/image-dimensions/460x73?v=v2" width="460" height="73" role="button" title="Unbenannt.png" alt="Unbenannt.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Apr 2020 07:39:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Independent-Summary-count-for-each-customer-based-on-percentage/m-p/1692586#M727138</guid>
      <dc:creator>Frank_Hartmann</dc:creator>
      <dc:date>2020-04-10T07:39:08Z</dc:date>
    </item>
    <item>
      <title>Re: Independent Summary count for each customer based on percentage from straight table</title>
      <link>https://community.qlik.com/t5/QlikView/Independent-Summary-count-for-each-customer-based-on-percentage/m-p/1692588#M727139</link>
      <description>&lt;P&gt;I created a pivot chart and retrieved the count for&amp;nbsp; &amp;lt;50 %&amp;nbsp; (ie &amp;lt;0.5) and &amp;gt;90% using set analysis. I am unable to get the count for in between ranges using set analysis.&amp;nbsp;&lt;/P&gt;&lt;P&gt;expression used for &amp;lt;50% and &amp;gt;90%&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;=count({&amp;lt;[Utilisation %]={"&amp;lt;=0.5"}&amp;gt;}Customer)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;=count({&amp;lt;[Utilisation %]={"&amp;gt;=0.9"}&amp;gt;}Customer)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;what expression can be used to get the in between ranges. (ie, between 50% to 70% and 70% to 80%)?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Attached the PIVOT Chart table for reference&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Apr 2020 07:40:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Independent-Summary-count-for-each-customer-based-on-percentage/m-p/1692588#M727139</guid>
      <dc:creator>aurly123</dc:creator>
      <dc:date>2020-04-10T07:40:16Z</dc:date>
    </item>
    <item>
      <title>Re: Independent Summary count for each customer based on percentage from straight table</title>
      <link>https://community.qlik.com/t5/QlikView/Independent-Summary-count-for-each-customer-based-on-percentage/m-p/1692591#M727140</link>
      <description>&lt;P&gt;Hi Frank,&lt;/P&gt;&lt;P&gt;Thanks for the reply. We cannot bring the data inside INLINE table since the data would growing&amp;nbsp; in the input excel. Actually Customer and Identifier is the only dimension available from the input sources and Utilization field is actually a calculated dimension.&amp;nbsp; I just tried to create a pivot table and derived the count using set analysis however i could not retrieve the count between 50 to 70 and 70 to 90.&amp;nbsp; Is that possible?&lt;/P&gt;&lt;P&gt;Attached the screenshot.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Apr 2020 07:48:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Independent-Summary-count-for-each-customer-based-on-percentage/m-p/1692591#M727140</guid>
      <dc:creator>aurly123</dc:creator>
      <dc:date>2020-04-10T07:48:49Z</dc:date>
    </item>
    <item>
      <title>Re: Independent Summary count for each customer based on percentage from straight table</title>
      <link>https://community.qlik.com/t5/QlikView/Independent-Summary-count-for-each-customer-based-on-percentage/m-p/1692592#M727141</link>
      <description>&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;Can you share the sample data in excel along with the calculation for Utilization.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Apr 2020 07:56:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Independent-Summary-count-for-each-customer-based-on-percentage/m-p/1692592#M727141</guid>
      <dc:creator>kaushiknsolanki</dc:creator>
      <dc:date>2020-04-10T07:56:36Z</dc:date>
    </item>
    <item>
      <title>Re: Independent Summary count for each customer based on percentage from straight table</title>
      <link>https://community.qlik.com/t5/QlikView/Independent-Summary-count-for-each-customer-based-on-percentage/m-p/1692594#M727142</link>
      <description>&lt;P&gt;Hi Kaushik,&lt;/P&gt;&lt;P&gt;I have attached the input data.&amp;nbsp; Utilisation % is calculated using dimensions from various other tables so i have included this manually in the excel sheet.&amp;nbsp; Please take this a look. Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 10 Apr 2020 08:08:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Independent-Summary-count-for-each-customer-based-on-percentage/m-p/1692594#M727142</guid>
      <dc:creator>aurly123</dc:creator>
      <dc:date>2020-04-10T08:08:14Z</dc:date>
    </item>
    <item>
      <title>Re: Independent Summary count for each customer based on percentage from straight table</title>
      <link>https://community.qlik.com/t5/QlikView/Independent-Summary-count-for-each-customer-based-on-percentage/m-p/1693619#M727143</link>
      <description>&lt;P&gt;Hi, can be the attached sample a solution for this?&lt;/P&gt;</description>
      <pubDate>Wed, 15 Apr 2020 10:39:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Independent-Summary-count-for-each-customer-based-on-percentage/m-p/1693619#M727143</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2020-04-15T10:39:13Z</dc:date>
    </item>
    <item>
      <title>Re: Independent Summary count for each customer based on percentage from straight table</title>
      <link>https://community.qlik.com/t5/QlikView/Independent-Summary-count-for-each-customer-based-on-percentage/m-p/1694004#M727144</link>
      <description>&lt;P&gt;Thanks Ruben, will try and update&lt;/P&gt;</description>
      <pubDate>Thu, 16 Apr 2020 10:06:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Independent-Summary-count-for-each-customer-based-on-percentage/m-p/1694004#M727144</guid>
      <dc:creator>aurly123</dc:creator>
      <dc:date>2020-04-16T10:06:31Z</dc:date>
    </item>
  </channel>
</rss>

