<?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: HELP! agreagate data based on date and multiple metrics in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/HELP-agreagate-data-based-on-date-and-multiple-metrics/m-p/863652#M470552</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your offer Clever, i have to override many names and information to give you a sample, does this help you help me? Thank you very much for your offer. It is much appreciated!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 14 May 2015 20:08:45 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-05-14T20:08:45Z</dc:date>
    <item>
      <title>HELP! agreagate data based on date and multiple metrics</title>
      <link>https://community.qlik.com/t5/QlikView/HELP-agreagate-data-based-on-date-and-multiple-metrics/m-p/863647#M470547</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a table i am bringing in from Excel, it has call center CALL data, and SECONDS that is broken up by MONTH, DATE, LANGUAGE, [CALL TYPE], and STRATEGY, taken by LEVEL 1, and rolled up to LEVEL 2, and LEVEL 3. These are all my metrics. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What i am attempting to do is sum up all the SECONDS, and CALLS up to the STRATEGY metric to minimize space in my table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am looking for solutions but I am having difficulty finding a SUM or AGGR for multiple criteria DATE, LANGUAGE, [CALL TYPE], LEVEL 1, LEVEL 2, LEVEL 3, STRATEGY... I also would like to do this from the script as i am loading the information from the spreadsheet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I appreciate the help of the QlikView community&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2015 17:02:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/HELP-agreagate-data-based-on-date-and-multiple-metrics/m-p/863647#M470547</guid>
      <dc:creator />
      <dc:date>2015-05-14T17:02:47Z</dc:date>
    </item>
    <item>
      <title>Re: HELP! agreagate data based on date and multiple metrics</title>
      <link>https://community.qlik.com/t5/QlikView/HELP-agreagate-data-based-on-date-and-multiple-metrics/m-p/863648#M470548</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you want to to it at script level, don´t use AGGR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tmp:&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;from yourexcelfile.xls;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;DATE, LANGUAGE, [CALL TYPE], LEVEL 1, LEVEL 2, LEVEL 3, STRATEGY,&lt;/P&gt;&lt;P&gt;SUM(SECONDS) AS TOTAL_SECONDS&lt;/P&gt;&lt;P&gt;SUM(CALLS)&amp;nbsp; AS TOTAL_CALLS&lt;/P&gt;&lt;P&gt;RESIDENT &lt;SPAN style="font-size: 13.3333330154419px;"&gt;tmp&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;GROUP BY &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;DATE, LANGUAGE, [CALL TYPE], LEVEL 1, LEVEL 2, LEVEL 3, STRATEGY;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;DROP TABLE tmp:&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2015 17:49:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/HELP-agreagate-data-based-on-date-and-multiple-metrics/m-p/863648#M470548</guid>
      <dc:creator>Clever_Anjos</dc:creator>
      <dc:date>2015-05-14T17:49:24Z</dc:date>
    </item>
    <item>
      <title>Re: HELP! agreagate data based on date and multiple metrics</title>
      <link>https://community.qlik.com/t5/QlikView/HELP-agreagate-data-based-on-date-and-multiple-metrics/m-p/863649#M470549</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Clever,&lt;/P&gt;&lt;P&gt;I'm am a beginner and frustration is kicking in. what is the syntax in this? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;having issues with way i am writing the script&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2015 19:34:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/HELP-agreagate-data-based-on-date-and-multiple-metrics/m-p/863649#M470549</guid>
      <dc:creator />
      <dc:date>2015-05-14T19:34:05Z</dc:date>
    </item>
    <item>
      <title>Re: HELP! agreagate data based on date and multiple metrics</title>
      <link>https://community.qlik.com/t5/QlikView/HELP-agreagate-data-based-on-date-and-multiple-metrics/m-p/863650#M470550</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Would you mind sharing a sample of your data?&lt;/P&gt;&lt;P&gt;I´ll write the script to you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2015 19:40:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/HELP-agreagate-data-based-on-date-and-multiple-metrics/m-p/863650#M470550</guid>
      <dc:creator>Clever_Anjos</dc:creator>
      <dc:date>2015-05-14T19:40:22Z</dc:date>
    </item>
    <item>
      <title>Re: HELP! agreagate data based on date and multiple metrics</title>
      <link>https://community.qlik.com/t5/QlikView/HELP-agreagate-data-based-on-date-and-multiple-metrics/m-p/863651#M470551</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I guess my issue is more as to where does the SUM need to be, and where does the GROUP BY need to be, same as the coma (",") and semi (";") placement need to be.&lt;/P&gt;&lt;P&gt;Also, i have never worked with adding a RESIDENT tmp so does that belong on the top bottom, etc..... i provided an image of all the info of how i pull below..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/86627_pastedImage_0.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2015 20:03:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/HELP-agreagate-data-based-on-date-and-multiple-metrics/m-p/863651#M470551</guid>
      <dc:creator />
      <dc:date>2015-05-14T20:03:12Z</dc:date>
    </item>
    <item>
      <title>Re: HELP! agreagate data based on date and multiple metrics</title>
      <link>https://community.qlik.com/t5/QlikView/HELP-agreagate-data-based-on-date-and-multiple-metrics/m-p/863652#M470552</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your offer Clever, i have to override many names and information to give you a sample, does this help you help me? Thank you very much for your offer. It is much appreciated!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2015 20:08:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/HELP-agreagate-data-based-on-date-and-multiple-metrics/m-p/863652#M470552</guid>
      <dc:creator />
      <dc:date>2015-05-14T20:08:45Z</dc:date>
    </item>
    <item>
      <title>Re: HELP! agreagate data based on date and multiple metrics</title>
      <link>https://community.qlik.com/t5/QlikView/HELP-agreagate-data-based-on-date-and-multiple-metrics/m-p/863653#M470553</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Qlikview does no support group by direct from a excel file&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please&lt;/P&gt;&lt;P&gt;1) Give a name to your table putting a name + ":" before LOAD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tmp:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp; DATE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) Now we can aggregate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f2f2f2;"&gt;&amp;nbsp;&amp;nbsp; DATE,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f2f2f2;"&gt;&amp;nbsp;&amp;nbsp; Language,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f2f2f2;"&gt;&amp;nbsp;&amp;nbsp; [CallType]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f2f2f2;"&gt;&amp;nbsp; SUM(SECONDS) AS TOTAL_SECONDS,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;RESIDENT tmp&lt;/P&gt;&lt;P&gt;GROUP BY &lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="color: #000000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f2f2f2;"&gt;&amp;nbsp;&amp;nbsp; DATE,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="color: #000000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f2f2f2;"&gt;&amp;nbsp;&amp;nbsp; Language,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="color: #000000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f2f2f2;"&gt;&amp;nbsp;&amp;nbsp; [CallType];&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="color: #000000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f2f2f2;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="color: #000000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f2f2f2;"&gt;DROP TABLE tmp&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f2f2f2;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2015 21:03:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/HELP-agreagate-data-based-on-date-and-multiple-metrics/m-p/863653#M470553</guid>
      <dc:creator>Clever_Anjos</dc:creator>
      <dc:date>2015-05-14T21:03:04Z</dc:date>
    </item>
  </channel>
</rss>

