<?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: Pivot Table Display in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Pivot-Table-Display/m-p/1518981#M749010</link>
    <description>&lt;P&gt;Hi Pradeep,&lt;/P&gt;&lt;P&gt;From this logic we are creating only one new field '&lt;SPAN&gt;NewCustID' also since the values are same as CustID it will not increase the size of the app much.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;It will increase the load time for sure &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 11 Dec 2018 06:38:43 GMT</pubDate>
    <dc:creator>jyothish8807</dc:creator>
    <dc:date>2018-12-11T06:38:43Z</dc:date>
    <item>
      <title>Pivot Table Display</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-Table-Display/m-p/1518952#M749006</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;Good day..&lt;/P&gt;&lt;P&gt;My data looks like below.&lt;/P&gt;&lt;P&gt;CustID,Parent_CustID,Measure1,Measure2,Country&lt;BR /&gt;Cust1, Cust1, 10, 20, Country1&lt;BR /&gt;Cust2, Cust1, 11, 21, Country2&lt;BR /&gt;Cust3, Cust1, 12, 22, Country2&lt;BR /&gt;Cust4, Cust4, 13, 23, Country3&lt;BR /&gt;Cust5, Cust6, 14, 24, Country4&lt;BR /&gt;Cust6, Cust6, 15, 25, Country4&lt;BR /&gt;Cust7, Cust7, 16, 26, Country4&lt;BR /&gt;Cust8, Cust7, 17, 27, Country5&lt;BR /&gt;Cust9, Cust9, 18, 28, Country6&lt;/P&gt;&lt;P&gt;Requirement:&lt;/P&gt;&lt;P&gt;I have a list box with CustID for selections.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have pivot table with dimensions.. Parent_CustID &amp;amp; CustID in same order; Expressions: Sum(Measure1)... 10 measures.&lt;/P&gt;&lt;P&gt;When I select any value&amp;nbsp;from List box(CustID), the pivot table should showcase all the customers with in the group(Parent_CustID).&lt;/P&gt;&lt;P&gt;Expected Output:&lt;/P&gt;&lt;P&gt;1) When I select Cust2 in the list Box, the pivot table has to show below info.&lt;/P&gt;&lt;P&gt;CustID,Parent_CustID,Measure1,Measure2&lt;BR /&gt;Cust1, Cust1, 10, 20&lt;BR /&gt;Cust2, Cust1, 11, 21&lt;BR /&gt;Cust3, Cust1, 12, 22&lt;/P&gt;&lt;P&gt;2) When I select Cust4 in the list Box, the pivot table has to show below info.&lt;/P&gt;&lt;P&gt;CustID,Parent_CustID,Measure1,Measure2&lt;BR /&gt;Cust4, Cust4, 13, 23&lt;/P&gt;&lt;P&gt;as there are lot of expressions/measures, I am trying to restrict the data at dimension level.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Edited:&lt;/STRONG&gt;&amp;nbsp; Dashboard contains&amp;nbsp;a lot of filters and other charts. The above stated scenario applies to only one pivot chart. In rest of the charts/filters, should show normally i.e. when I select Cust2 , it should reflect Cust2 related data only. To illustrate this I have added one more dimension Country to the data sample.&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 05:00:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-Table-Display/m-p/1518952#M749006</guid>
      <dc:creator>PradeepReddy</dc:creator>
      <dc:date>2024-11-16T05:00:11Z</dc:date>
    </item>
    <item>
      <title>Re: Pivot Table Display</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-Table-Display/m-p/1518964#M749007</link>
      <description>&lt;P&gt;Hi Pradeep,&lt;/P&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;A:&lt;BR /&gt;LOAD * Inline [&lt;BR /&gt;CustID,Parent_CustID,Measure1,Measure2&lt;BR /&gt;Cust1, Cust1, 10, 20&lt;BR /&gt;Cust2, Cust1, 11, 21&lt;BR /&gt;Cust3, Cust1, 12, 22&lt;BR /&gt;Cust4, Cust4, 13, 23&lt;BR /&gt;Cust5, Cust6, 14, 24&lt;BR /&gt;Cust6, Cust6, 15, 25&lt;BR /&gt;Cust7, Cust7, 16, 26&lt;BR /&gt;Cust8, Cust7, 17, 27&lt;BR /&gt;Cust9, Cust9, 18, 28&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;Left join&lt;BR /&gt;B:&lt;BR /&gt;Load&lt;BR /&gt;distinct&lt;BR /&gt;Parent_CustID,&lt;BR /&gt;AutoNumber(Parent_CustID) as ID&lt;BR /&gt;resident A;&lt;/P&gt;&lt;P&gt;Left join&lt;BR /&gt;Load&lt;BR /&gt;ID,&lt;BR /&gt;CustID as NewCustID&lt;BR /&gt;resident A;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Dec 2018 06:08:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-Table-Display/m-p/1518964#M749007</guid>
      <dc:creator>jyothish8807</dc:creator>
      <dc:date>2018-12-11T06:08:58Z</dc:date>
    </item>
    <item>
      <title>Re: Pivot Table Display</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-Table-Display/m-p/1518965#M749008</link>
      <description>&lt;P&gt;Just use 'NewCustID' in the list box and 'CustID' in pivot as dimension &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Dec 2018 06:09:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-Table-Display/m-p/1518965#M749008</guid>
      <dc:creator>jyothish8807</dc:creator>
      <dc:date>2018-12-11T06:09:49Z</dc:date>
    </item>
    <item>
      <title>Re: Pivot Table Display</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-Table-Display/m-p/1518976#M749009</link>
      <description>thanks jyothish for quick reply.&lt;BR /&gt;I have given sample data and this is small part of data model.&lt;BR /&gt;Actual table contains around 1million records and each group contains on average 15-20 customers. If we do the join it will impact the size of the app and RAM usage.&lt;BR /&gt;&lt;BR /&gt;So trying achieve with existing table structure as given, with slight modifications.&lt;BR /&gt;</description>
      <pubDate>Tue, 11 Dec 2018 06:33:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-Table-Display/m-p/1518976#M749009</guid>
      <dc:creator>PradeepReddy</dc:creator>
      <dc:date>2018-12-11T06:33:02Z</dc:date>
    </item>
    <item>
      <title>Re: Pivot Table Display</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-Table-Display/m-p/1518981#M749010</link>
      <description>&lt;P&gt;Hi Pradeep,&lt;/P&gt;&lt;P&gt;From this logic we are creating only one new field '&lt;SPAN&gt;NewCustID' also since the values are same as CustID it will not increase the size of the app much.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;It will increase the load time for sure &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Dec 2018 06:38:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-Table-Display/m-p/1518981#M749010</guid>
      <dc:creator>jyothish8807</dc:creator>
      <dc:date>2018-12-11T06:38:43Z</dc:date>
    </item>
    <item>
      <title>Re: Pivot Table Display</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-Table-Display/m-p/1518987#M749011</link>
      <description>Its correct, the reload time will increase and a small amount of application size.&lt;BR /&gt;But if we did not select any NewCustID(from your solution) the measures will show wrong numbers. To avoid this we have to change the simple expressions to little complex expressions(10 expressions), which in turn leads to performance, on each other selections&lt;BR /&gt;And also as per your suggested process, we have to choose 'always one NewCustID' in order to show the correct numbers. Which is not the scenario..&lt;BR /&gt;&lt;BR /&gt;sincerely appreciate your efforts..&lt;BR /&gt;</description>
      <pubDate>Tue, 11 Dec 2018 06:53:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-Table-Display/m-p/1518987#M749011</guid>
      <dc:creator>PradeepReddy</dc:creator>
      <dc:date>2018-12-11T06:53:43Z</dc:date>
    </item>
    <item>
      <title>Re: Pivot Table Display</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-Table-Display/m-p/1518989#M749012</link>
      <description>&lt;P&gt;Hi Pradeep,&lt;/P&gt;&lt;P&gt;Just removed the left join, now the sum will be correct &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;A:&lt;BR /&gt;LOAD * Inline [&lt;BR /&gt;CustID,Parent_CustID,Measure1,Measure2&lt;BR /&gt;Cust1, Cust1, 10, 20&lt;BR /&gt;Cust2, Cust1, 11, 21&lt;BR /&gt;Cust3, Cust1, 12, 22&lt;BR /&gt;Cust4, Cust4, 13, 23&lt;BR /&gt;Cust5, Cust6, 14, 24&lt;BR /&gt;Cust6, Cust6, 15, 25&lt;BR /&gt;Cust7, Cust7, 16, 26&lt;BR /&gt;Cust8, Cust7, 17, 27&lt;BR /&gt;Cust9, Cust9, 18, 28&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;Left join&lt;BR /&gt;B:&lt;BR /&gt;Load&lt;BR /&gt;distinct&lt;BR /&gt;Parent_CustID,&lt;BR /&gt;AutoNumber(Parent_CustID) as ID&lt;BR /&gt;resident A;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;&lt;STRIKE&gt;&lt;STRONG&gt;Left join&lt;/STRONG&gt;&lt;/STRIKE&gt;&lt;/FONT&gt;&lt;BR /&gt;Load&lt;BR /&gt;ID,&lt;BR /&gt;CustID as NewCustID&lt;BR /&gt;resident A;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Dec 2018 06:58:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-Table-Display/m-p/1518989#M749012</guid>
      <dc:creator>jyothish8807</dc:creator>
      <dc:date>2018-12-11T06:58:07Z</dc:date>
    </item>
    <item>
      <title>Re: Pivot Table Display</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-Table-Display/m-p/1518993#M749013</link>
      <description>superb (y)</description>
      <pubDate>Tue, 11 Dec 2018 07:15:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-Table-Display/m-p/1518993#M749013</guid>
      <dc:creator>shreya_nadkarni</dc:creator>
      <dc:date>2018-12-11T07:15:32Z</dc:date>
    </item>
    <item>
      <title>Re: Pivot Table Display</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-Table-Display/m-p/1519002#M749014</link>
      <description>&lt;P&gt;if we take other filter/chart, when we select the data from NewCustID, it will give you wrong results.&lt;/P&gt;&lt;P&gt;Might be I missed to mention in my earlier post, there are other filters/ charts in the dashboard.&lt;/P&gt;&lt;P&gt;to illustrate the same, I have added one Country field, please see the attachment.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Dec 2018 07:46:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-Table-Display/m-p/1519002#M749014</guid>
      <dc:creator>PradeepReddy</dc:creator>
      <dc:date>2018-12-11T07:46:12Z</dc:date>
    </item>
    <item>
      <title>Re: Pivot Table Display</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-Table-Display/m-p/1519003#M749015</link>
      <description>&lt;P&gt;I have to use one list box only to select the customer, either NewCustomerID or Cust_ID&lt;/P&gt;</description>
      <pubDate>Tue, 11 Dec 2018 07:48:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-Table-Display/m-p/1519003#M749015</guid>
      <dc:creator>PradeepReddy</dc:creator>
      <dc:date>2018-12-11T07:48:58Z</dc:date>
    </item>
    <item>
      <title>Re: Pivot Table Display</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-Table-Display/m-p/1519008#M749016</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You can try this script.&lt;/P&gt;&lt;P&gt;A:&lt;BR /&gt;LOAD * Inline [&lt;BR /&gt;CustID,Parent_CustID,Measure1,Measure2&lt;BR /&gt;Cust1, Cust1, 10, 20&lt;BR /&gt;Cust2, Cust1, 11, 21&lt;BR /&gt;Cust3, Cust1, 12, 22&lt;BR /&gt;Cust4, Cust4, 13, 23&lt;BR /&gt;Cust5, Cust6, 14, 24&lt;BR /&gt;Cust6, Cust6, 15, 25&lt;BR /&gt;Cust7, Cust7, 16, 26&lt;BR /&gt;Cust8, Cust7, 17, 27&lt;BR /&gt;Cust9, Cust9, 18, 28&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;B:&lt;BR /&gt;Load&lt;BR /&gt;distinct&lt;BR /&gt;Parent_CustID,&lt;BR /&gt;CustID as new_id&lt;BR /&gt;resident A;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Shreya&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Dec 2018 07:55:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-Table-Display/m-p/1519008#M749016</guid>
      <dc:creator>shreya_nadkarni</dc:creator>
      <dc:date>2018-12-11T07:55:36Z</dc:date>
    </item>
    <item>
      <title>Re: Pivot Table Display</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-Table-Display/m-p/1519016#M749018</link>
      <description>1st pivot showing correct info..&lt;BR /&gt;2nd pivot (having only 'Cust2') not showing correct numbers, it should show 11 and 21 respectively.&lt;BR /&gt;2nd table you can consider as simple table for simplicity purpose.&lt;BR /&gt;&lt;BR /&gt;appreciate your efforts.</description>
      <pubDate>Tue, 11 Dec 2018 08:19:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-Table-Display/m-p/1519016#M749018</guid>
      <dc:creator>PradeepReddy</dc:creator>
      <dc:date>2018-12-11T08:19:12Z</dc:date>
    </item>
    <item>
      <title>Re: Pivot Table Display</title>
      <link>https://community.qlik.com/t5/QlikView/Pivot-Table-Display/m-p/1519050#M749020</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;If there is single selection for New Id&lt;/P&gt;&lt;P&gt;Then the detail info will show the output(Attached qvw).&lt;/P&gt;&lt;P&gt;Expression modified.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Dec 2018 09:00:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pivot-Table-Display/m-p/1519050#M749020</guid>
      <dc:creator>shreya_nadkarni</dc:creator>
      <dc:date>2018-12-11T09:00:23Z</dc:date>
    </item>
  </channel>
</rss>

