<?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: Aggregations and group by in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Aggregations-and-group-by/m-p/1541263#M745419</link>
    <description>Hi , thank you I will do this.</description>
    <pubDate>Fri, 08 Feb 2019 02:46:34 GMT</pubDate>
    <dc:creator>andrea0901</dc:creator>
    <dc:date>2019-02-08T02:46:34Z</dc:date>
    <item>
      <title>Aggregations and group by</title>
      <link>https://community.qlik.com/t5/QlikView/Aggregations-and-group-by/m-p/1539850#M745416</link>
      <description>Hi I am attaching the excel file where I needed some help in qlik coding.&lt;BR /&gt;&lt;BR /&gt;In the attached excel file in Data tab -&amp;gt;&lt;BR /&gt;1. I need to derive the calculations from column T based on S column till X column in qlik. I have done using aggregations in front end and it’s very slow.&lt;BR /&gt;&lt;BR /&gt;2. In pivot tab , I need to calculate average of action duration for three pivot tables for three stages based on the filters mentioned in pivot sheet.&lt;BR /&gt;&lt;BR /&gt;3. Only for cycle time we need to take maximum of closed time stamp for particlular invoice which was terminated at all stages i.e approval or assign approver.&lt;BR /&gt;&lt;BR /&gt;Please help me in solving this it will be very helpful for me.&lt;BR /&gt;&lt;BR /&gt;Thanks a lot.&lt;BR /&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggregations-and-group-by/m-p/1539850#M745416</guid>
      <dc:creator>andrea0901</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregations and group by</title>
      <link>https://community.qlik.com/t5/QlikView/Aggregations-and-group-by/m-p/1540318#M745417</link>
      <description>Hi All,&lt;BR /&gt;Can anyone help me on this issue. Its little urgent.</description>
      <pubDate>Wed, 06 Feb 2019 14:17:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggregations-and-group-by/m-p/1540318#M745417</guid>
      <dc:creator>andrea0901</dc:creator>
      <dc:date>2019-02-06T14:17:13Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregations and group by</title>
      <link>https://community.qlik.com/t5/QlikView/Aggregations-and-group-by/m-p/1540921#M745418</link>
      <description>&lt;P&gt;Try this&lt;/P&gt;&lt;PRE&gt;Table:
LOAD IN#, 
     Workflow.companyCode, 
     Workflow.fiDocumentNumber, 
     Workflow.mmDocumentNumber, 
     Workflow.invoiceLineItemNumber, 
     Workflow.Instance_Type, 
     Workflow.blockType, 
     Workflow.Status, 
     Recon.INVOICE_LINEITEM_AMOUNT_EUR, 
     Recon.INVOICE_LINEITEM_AMOUNT, 
     Recon.CURRENCY, 
     Events.ACTION, 
     Events.ASSIGNED_TO_ROLE, 
     Events.ASSIGNED_TO_USER, 
     Events.ASSIGNED_TIMESTAMP, 
     Events.CLOSED_BY_USER, 
     Events.CLOSED_TIMESTAMP,
     Action_v2,
     Workflow.mmDocumentNumber &amp;amp; '_' &amp;amp; Workflow.invoiceLineItemNumber &amp;amp; '_' &amp;amp; Action_v2 as Workflow_Action_v2,
     Workflow.mmDocumentNumber &amp;amp; '_' &amp;amp; Workflow.invoiceLineItemNumber as [Workflow+item],
     Workflow.mmDocumentNumber &amp;amp; '_' &amp;amp; Workflow.invoiceLineItemNumber&amp;amp; '_' &amp;amp; Workflow.blockType as [Workflow item with workflow block],
     Events.CLOSED_TIMESTAMP - Events.ASSIGNED_TIMESTAMP as Duration,
     Country,
     Market,
     Region,
     Kernel,
     [Infosys Center],
     [Workflow ended]
FROM
[..\..\Downloads\Testing.xlsx]
(ooxml, embedded labels, table is Data);

Left Join (Table)
LOAD Workflow_Action_v2,
	 Sum(Duration) as [Action duration]
Resident Table
Group By Workflow_Action_v2;

Left Join (Table)
LOAD [Workflow+item],
	 Sum(Duration) as [Workflow duration]
Resident Table
Group By [Workflow+item];&lt;/PRE&gt;&lt;P&gt;You are doing vlookup for some of the field such as Action_v2. I didn't have the file from where you are doing this vlookup, so I picked it up directly from the Excel provided.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Feb 2019 13:47:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggregations-and-group-by/m-p/1540921#M745418</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2019-02-07T13:47:49Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregations and group by</title>
      <link>https://community.qlik.com/t5/QlikView/Aggregations-and-group-by/m-p/1541263#M745419</link>
      <description>Hi , thank you I will do this.</description>
      <pubDate>Fri, 08 Feb 2019 02:46:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggregations-and-group-by/m-p/1541263#M745419</guid>
      <dc:creator>andrea0901</dc:creator>
      <dc:date>2019-02-08T02:46:34Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregations and group by</title>
      <link>https://community.qlik.com/t5/QlikView/Aggregations-and-group-by/m-p/1541315#M745420</link>
      <description>&lt;P&gt;Hi sunny,&lt;/P&gt;&lt;P&gt;Thanks for ur help.&lt;/P&gt;&lt;P&gt;I am finding a new challenge here.&amp;nbsp;&lt;/P&gt;&lt;P&gt;In my excel attached previuosly, there is a tab , PIVOT.&lt;/P&gt;&lt;P&gt;i am creating three scenarios.&amp;nbsp;&lt;/P&gt;&lt;P&gt;1st scenario:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For&amp;nbsp;each&amp;nbsp;scenario i need to harcode&amp;nbsp;Workflow.Status as terminated and ACTION_V2 = Approver.&lt;/P&gt;&lt;P&gt;i wrote in straight table as&lt;/P&gt;&lt;P&gt;=Avg({&amp;lt;Workflow.Status = {'Terminated'}, Action_v2 = {'Approver'}&amp;gt;}[Action duration])&lt;/P&gt;&lt;P&gt;but i am not getting any values if i write like above.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;similarly for second scenrio as well.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please help me out.&lt;/P&gt;</description>
      <pubDate>Fri, 08 Feb 2019 07:44:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggregations-and-group-by/m-p/1541315#M745420</guid>
      <dc:creator>andrea0901</dc:creator>
      <dc:date>2019-02-08T07:44:17Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregations and group by</title>
      <link>https://community.qlik.com/t5/QlikView/Aggregations-and-group-by/m-p/1541467#M745421</link>
      <description>&lt;P&gt;I am not sure I follow, would you be able to show an image of what you get and point out what exactly isn't right?&lt;/P&gt;</description>
      <pubDate>Fri, 08 Feb 2019 12:13:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggregations-and-group-by/m-p/1541467#M745421</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2019-02-08T12:13:36Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregations and group by</title>
      <link>https://community.qlik.com/t5/QlikView/Aggregations-and-group-by/m-p/1542053#M745423</link>
      <description>&lt;P&gt;Hi Sunny,&lt;/P&gt;&lt;P&gt;It is working now. Thanks for your help.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Feb 2019 02:49:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggregations-and-group-by/m-p/1542053#M745423</guid>
      <dc:creator>andrea0901</dc:creator>
      <dc:date>2019-02-11T02:49:59Z</dc:date>
    </item>
  </channel>
</rss>

