<?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 How to implement set expression and Total function together? in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/How-to-implement-set-expression-and-Total-function-together/m-p/1599220#M44308</link>
    <description>&lt;P&gt;For Example,&amp;nbsp;&lt;/P&gt;&lt;P&gt;A Pivot table has Region in Columns and Classifications in Rows as shown in the screenshot attached&lt;/P&gt;&lt;P&gt;I am trying to obtain the total values across the regions for individual Classifications to be shown in every cell of the classification only for the data pertaining to Round_id =2. Please refer to the screenshot for better understanding of the expectation.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is the formula, I have been using "sum( {$&amp;lt;Round_ID={'2'}&amp;gt;} Total&amp;lt;Classification&amp;gt; Points_Earned)" for that. However, the result is ignorant of the total function I put in the expression. That means the same result is obtained even without the Total Function "sum( {$&amp;lt;Round_ID={'2'}&amp;gt;} Points_Earned)". Can you please correct me for where the mistake is?&lt;/P&gt;&lt;P&gt;Note: When I don't use the set expression alongside the Total function, "sum(Total&amp;lt;Classification&amp;gt; Points_Earned)", the result comes out correctly considering the total function. However, I want this expression to be modified to account for specific round_id's embedded in the set expression.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 16 Nov 2024 20:31:00 GMT</pubDate>
    <dc:creator>subramanir3</dc:creator>
    <dc:date>2024-11-16T20:31:00Z</dc:date>
    <item>
      <title>How to implement set expression and Total function together?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-implement-set-expression-and-Total-function-together/m-p/1599220#M44308</link>
      <description>&lt;P&gt;For Example,&amp;nbsp;&lt;/P&gt;&lt;P&gt;A Pivot table has Region in Columns and Classifications in Rows as shown in the screenshot attached&lt;/P&gt;&lt;P&gt;I am trying to obtain the total values across the regions for individual Classifications to be shown in every cell of the classification only for the data pertaining to Round_id =2. Please refer to the screenshot for better understanding of the expectation.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is the formula, I have been using "sum( {$&amp;lt;Round_ID={'2'}&amp;gt;} Total&amp;lt;Classification&amp;gt; Points_Earned)" for that. However, the result is ignorant of the total function I put in the expression. That means the same result is obtained even without the Total Function "sum( {$&amp;lt;Round_ID={'2'}&amp;gt;} Points_Earned)". Can you please correct me for where the mistake is?&lt;/P&gt;&lt;P&gt;Note: When I don't use the set expression alongside the Total function, "sum(Total&amp;lt;Classification&amp;gt; Points_Earned)", the result comes out correctly considering the total function. However, I want this expression to be modified to account for specific round_id's embedded in the set expression.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 20:31:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-implement-set-expression-and-Total-function-together/m-p/1599220#M44308</guid>
      <dc:creator>subramanir3</dc:creator>
      <dc:date>2024-11-16T20:31:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to implement set expression and Total function together?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-implement-set-expression-and-Total-function-together/m-p/1599389#M44315</link>
      <description>&lt;P&gt;can u share a sample application&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jul 2019 11:07:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-implement-set-expression-and-Total-function-together/m-p/1599389#M44315</guid>
      <dc:creator>anushree1</dc:creator>
      <dc:date>2019-07-05T11:07:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to implement set expression and Total function together?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-implement-set-expression-and-Total-function-together/m-p/1599884#M44337</link>
      <description>&lt;P&gt;Hi Subramanir,&lt;/P&gt;&lt;P&gt;If I'm following your problem, you want all the same values for all regions. Then why do this? Why don't create a normal table with Sum([YourField]) and the Classification as dimension?&lt;/P&gt;&lt;P&gt;Jordy&lt;/P&gt;&lt;P&gt;Climber&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jul 2019 12:28:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-implement-set-expression-and-Total-function-together/m-p/1599884#M44337</guid>
      <dc:creator>JordyWegman</dc:creator>
      <dc:date>2019-07-08T12:28:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to implement set expression and Total function together?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-implement-set-expression-and-Total-function-together/m-p/1600733#M44425</link>
      <description>&lt;P&gt;I see that you have deleted your last response, but if you use a total function,&amp;nbsp; you should put it in front of the set analysis:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;sum( {$&amp;lt;Round_ID={"$(=max(Round_ID))"}&amp;gt;}  Total&amp;lt;Classification&amp;gt; Points_Earned)

Change into:
sum(Total  {$&amp;lt;Round_ID={"$(=max(Round_ID))"}&amp;gt;}  Points_Earned)&lt;/LI-CODE&gt;&lt;P&gt;Jordy&lt;/P&gt;&lt;P&gt;Climber&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jul 2019 06:55:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-implement-set-expression-and-Total-function-together/m-p/1600733#M44425</guid>
      <dc:creator>JordyWegman</dc:creator>
      <dc:date>2019-07-10T06:55:55Z</dc:date>
    </item>
  </channel>
</rss>

