<?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: Aggr Function in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Aggr-Function/m-p/1660793#M729064</link>
    <description>&lt;P&gt;Did either of the posts assist you with your use case questions?&amp;nbsp; If so, do not forget to return and use the Accept as Solution button on the post(s) that helped, as this gives the posters credit for the assistance and lets other Community Members know what actually worked.&amp;nbsp; If you require further assistance, please leave an update post.&lt;/P&gt;
&lt;P&gt;Here are some specific Design Blog posts that may be helpful, and the last post will be the base URL to the Design Blog area, you can use that to further search yourself, there are hundreds of mostly how-to posts in this area by our internal experts on the different products...&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Design-Blog/Use-Aggregation-Functions/ba-p/1475833" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Design-Blog/Use-Aggregation-Functions/ba-p/1475833&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Design-Blog/Don-t-get-aggr-avated-using-aggr/ba-p/1464136" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Design-Blog/Don-t-get-aggr-avated-using-aggr/ba-p/1464136&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Design-Blog/Pitfalls-of-the-Aggr-function/ba-p/1463275" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Design-Blog/Pitfalls-of-the-Aggr-function/ba-p/1463275&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Design-Blog/Set-Analysis-in-the-Aggr-function/ba-p/1463822" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Design-Blog/Set-Analysis-in-the-Aggr-function/ba-p/1463822&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Design-Blog/bg-p/qlik-design-blog" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Design-Blog/bg-p/qlik-design-blog&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Hopefully this is further help...&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt;Brett&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 26 Dec 2019 14:39:44 GMT</pubDate>
    <dc:creator>Brett_Bleess</dc:creator>
    <dc:date>2019-12-26T14:39:44Z</dc:date>
    <item>
      <title>Aggr Function</title>
      <link>https://community.qlik.com/t5/QlikView/Aggr-Function/m-p/1659607#M729061</link>
      <description>&lt;P&gt;Hi everyone&lt;/P&gt;&lt;P&gt;I have a question for you&lt;/P&gt;&lt;P&gt;For my learning, I have a dummy table of customer Asset list (very simple table)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Customer | Work Asset Owned&lt;/P&gt;&lt;P&gt;Alan | Phone&lt;/P&gt;&lt;P&gt;Alan | Phone&lt;/P&gt;&lt;P&gt;Alan | PC Desktop&lt;/P&gt;&lt;P&gt;Alan | PC Laptop&lt;/P&gt;&lt;P&gt;Bernard | Phone&lt;/P&gt;&lt;P&gt;Bernard | PC Desktop&lt;/P&gt;&lt;P&gt;Bernard | PC Laptop&lt;/P&gt;&lt;P&gt;Bernard | PC Laptop&lt;/P&gt;&lt;P&gt;Bernard | PC Laptop&lt;/P&gt;&lt;P&gt;Cindy | Phone&lt;/P&gt;&lt;P&gt;Cindy | PC Desktop&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My objective is to obtain the information about the most number of Asset owned by someone. So in this case, when building Pivot table:&lt;/P&gt;&lt;P&gt;1. For Alan, I want to see Phone (2) because he has 2 phones (which is the highest count of all assets he owns)&lt;/P&gt;&lt;P&gt;2. For Bernard, I want to see PC Laptop (3) because he has 3 PC Laptops&lt;/P&gt;&lt;P&gt;3. For Cindy, it can be anything since she only has 1 each (no Max value)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am still learning and I think I have to use Aggr function, but I am not sure how.&lt;/P&gt;&lt;P&gt;Would anyone be able to help me?&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 01:39:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggr-Function/m-p/1659607#M729061</guid>
      <dc:creator>rinalldo</dc:creator>
      <dc:date>2024-11-16T01:39:18Z</dc:date>
    </item>
    <item>
      <title>Re: Aggr Function</title>
      <link>https://community.qlik.com/t5/QlikView/Aggr-Function/m-p/1659623#M729062</link>
      <description>&lt;P&gt;maybe this:&lt;/P&gt;&lt;P&gt;dimensions:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&amp;nbsp;Customer&lt;/LI&gt;&lt;LI&gt;Work Asset Owned&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;expression:&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;max(aggr(if(count([Work Asset Owned]) &amp;gt;1, count([Work Asset Owned])), Customer, [Work Asset Owned]))&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 20 Dec 2019 07:24:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggr-Function/m-p/1659623#M729062</guid>
      <dc:creator>zhadrakas</dc:creator>
      <dc:date>2019-12-20T07:24:19Z</dc:date>
    </item>
    <item>
      <title>Re: Aggr Function</title>
      <link>https://community.qlik.com/t5/QlikView/Aggr-Function/m-p/1659780#M729063</link>
      <description>&lt;P&gt;Is this what you are trying to get?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/25859iA614017556B0C594/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Expression used&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Sum(Aggr(If(Max(TOTAL &amp;lt;Customer&amp;gt; Aggr(Count([Work Asset Owned]), Customer, [Work Asset Owned])) = Count([Work Asset Owned]), Count([Work Asset Owned])), Customer, [Work Asset Owned]))&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 20 Dec 2019 13:34:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggr-Function/m-p/1659780#M729063</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2019-12-20T13:34:47Z</dc:date>
    </item>
    <item>
      <title>Re: Aggr Function</title>
      <link>https://community.qlik.com/t5/QlikView/Aggr-Function/m-p/1660793#M729064</link>
      <description>&lt;P&gt;Did either of the posts assist you with your use case questions?&amp;nbsp; If so, do not forget to return and use the Accept as Solution button on the post(s) that helped, as this gives the posters credit for the assistance and lets other Community Members know what actually worked.&amp;nbsp; If you require further assistance, please leave an update post.&lt;/P&gt;
&lt;P&gt;Here are some specific Design Blog posts that may be helpful, and the last post will be the base URL to the Design Blog area, you can use that to further search yourself, there are hundreds of mostly how-to posts in this area by our internal experts on the different products...&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Design-Blog/Use-Aggregation-Functions/ba-p/1475833" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Design-Blog/Use-Aggregation-Functions/ba-p/1475833&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Design-Blog/Don-t-get-aggr-avated-using-aggr/ba-p/1464136" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Design-Blog/Don-t-get-aggr-avated-using-aggr/ba-p/1464136&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Design-Blog/Pitfalls-of-the-Aggr-function/ba-p/1463275" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Design-Blog/Pitfalls-of-the-Aggr-function/ba-p/1463275&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Design-Blog/Set-Analysis-in-the-Aggr-function/ba-p/1463822" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Design-Blog/Set-Analysis-in-the-Aggr-function/ba-p/1463822&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Design-Blog/bg-p/qlik-design-blog" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Design-Blog/bg-p/qlik-design-blog&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Hopefully this is further help...&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt;Brett&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Dec 2019 14:39:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggr-Function/m-p/1660793#M729064</guid>
      <dc:creator>Brett_Bleess</dc:creator>
      <dc:date>2019-12-26T14:39:44Z</dc:date>
    </item>
  </channel>
</rss>

