<?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: Group By ? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Group-By/m-p/732303#M1049268</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The group by clause is used to retrieve data depending of one or more columns. For example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Product,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Customer,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sum(qty) as Quantity&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;Test.qvd(qvd)&lt;/P&gt;&lt;P&gt;GROUP BY Product, Customer;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This sentence will bring will return the Quantity column as a sum o qty grouped by the diferents combinations of Product and Customer. Group by clause must include all fields where there's no agregation on it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Gabriel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 30 Oct 2014 11:11:50 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2014-10-30T11:11:50Z</dc:date>
    <item>
      <title>Group By ?</title>
      <link>https://community.qlik.com/t5/QlikView/Group-By/m-p/732299#M1049255</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to know hot use group by in QLikview with Some examples is great ful for me ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Warm,&lt;/P&gt;&lt;P&gt;Heather&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Oct 2014 11:03:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Group-By/m-p/732299#M1049255</guid>
      <dc:creator />
      <dc:date>2014-10-30T11:03:38Z</dc:date>
    </item>
    <item>
      <title>Re: Group By ?</title>
      <link>https://community.qlik.com/t5/QlikView/Group-By/m-p/732300#M1049259</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sales:&lt;/P&gt;&lt;P&gt;Load &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Customer, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; InvoiceDate,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sales&lt;/P&gt;&lt;P&gt;From TableName;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TotalSales:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Customer, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SUM(Sales) as TotalSales&lt;/P&gt;&lt;P&gt;Resident Sales&lt;/P&gt;&lt;P&gt;Group By Customer;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Oct 2014 11:05:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Group-By/m-p/732300#M1049259</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2014-10-30T11:05:38Z</dc:date>
    </item>
    <item>
      <title>Re: Group By ?</title>
      <link>https://community.qlik.com/t5/QlikView/Group-By/m-p/732301#M1049262</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Go through this link&amp;nbsp; &lt;A _jive_internal="true" href="https://community.qlik.com/message/507005#507005"&gt;http://community.qlik.com/message/507005#507005&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Oct 2014 11:05:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Group-By/m-p/732301#M1049262</guid>
      <dc:creator>senpradip007</dc:creator>
      <dc:date>2014-10-30T11:05:57Z</dc:date>
    </item>
    <item>
      <title>Re: Group By ?</title>
      <link>https://community.qlik.com/t5/QlikView/Group-By/m-p/732302#M1049265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Very simple example suppose i need to sum up the values of the regions in the back end so i group the sales sum in the regions wise.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Source:&lt;/P&gt;&lt;P&gt;LOAD * Inline&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;Region,Customer,Sales&lt;/P&gt;&lt;P&gt;R1,C1,4863&lt;/P&gt;&lt;P&gt;R2,C2,1263&lt;/P&gt;&lt;P&gt;R3,C2,1475&lt;/P&gt;&lt;P&gt;R3,C3,1256&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Query:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;Region,&lt;/P&gt;&lt;P&gt;Sum(Sales) as SaleAmt&lt;/P&gt;&lt;P&gt;Resident Source&lt;/P&gt;&lt;P&gt;Group By&lt;/P&gt;&lt;P&gt;Region;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then i get another table as Sum up sales with region&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" width="105"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="xl63" height="17" width="54"&gt;Region&lt;/TD&gt;&lt;TD class="xl63" style="border-left: none;" width="51"&gt;SaleAmt&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl64" height="17" style="border-top: none;"&gt;R1&lt;/TD&gt;&lt;TD class="xl64" style="border-top: none; border-left: none;"&gt;4863&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl64" height="17" style="border-top: none;"&gt;R2&lt;/TD&gt;&lt;TD class="xl64" style="border-top: none; border-left: none;"&gt;1263&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl64" height="17" style="border-top: none;"&gt;R3&lt;/TD&gt;&lt;TD class="xl64" style="border-top: none; border-left: none;"&gt;2731&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;P&gt;Anand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Oct 2014 11:10:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Group-By/m-p/732302#M1049265</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-10-30T11:10:41Z</dc:date>
    </item>
    <item>
      <title>Re: Group By ?</title>
      <link>https://community.qlik.com/t5/QlikView/Group-By/m-p/732303#M1049268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The group by clause is used to retrieve data depending of one or more columns. For example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Product,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Customer,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sum(qty) as Quantity&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;Test.qvd(qvd)&lt;/P&gt;&lt;P&gt;GROUP BY Product, Customer;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This sentence will bring will return the Quantity column as a sum o qty grouped by the diferents combinations of Product and Customer. Group by clause must include all fields where there's no agregation on it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Gabriel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Oct 2014 11:11:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Group-By/m-p/732303#M1049268</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-10-30T11:11:50Z</dc:date>
    </item>
  </channel>
</rss>

