<?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 ignore the dimension in a table in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/How-to-ignore-the-dimension-in-a-table/m-p/1590699#M43363</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have a table with "Brand", "Product" and "Country" are dimensions.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Two measures as below:&amp;nbsp;&lt;/P&gt;&lt;P&gt;1.&amp;nbsp; Sum({&amp;lt;Year={'$(vMaxYear)'}&amp;gt;}value) .... 'value' is a filed, 'vMaxyear' is a variable.&lt;/P&gt;&lt;P&gt;2.&amp;nbsp; I need another expression to calculate the sum of value according to Brand and Product.&amp;nbsp; I don't know how to write this expression, how to ignore the dimension with Country field.&lt;/P&gt;&lt;P&gt;Thank you for your help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 16 Nov 2024 20:41:14 GMT</pubDate>
    <dc:creator>Kevinchinese</dc:creator>
    <dc:date>2024-11-16T20:41:14Z</dc:date>
    <item>
      <title>How to ignore the dimension in a table</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-ignore-the-dimension-in-a-table/m-p/1590699#M43363</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have a table with "Brand", "Product" and "Country" are dimensions.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Two measures as below:&amp;nbsp;&lt;/P&gt;&lt;P&gt;1.&amp;nbsp; Sum({&amp;lt;Year={'$(vMaxYear)'}&amp;gt;}value) .... 'value' is a filed, 'vMaxyear' is a variable.&lt;/P&gt;&lt;P&gt;2.&amp;nbsp; I need another expression to calculate the sum of value according to Brand and Product.&amp;nbsp; I don't know how to write this expression, how to ignore the dimension with Country field.&lt;/P&gt;&lt;P&gt;Thank you for your help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 20:41:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-ignore-the-dimension-in-a-table/m-p/1590699#M43363</guid>
      <dc:creator>Kevinchinese</dc:creator>
      <dc:date>2024-11-16T20:41:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to ignore the dimension in a table</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-ignore-the-dimension-in-a-table/m-p/1590712#M43364</link>
      <description>&lt;P&gt;do with AGGR()&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;=Aggr(Sum({&amp;lt;Year={'$(vMaxYear)'}&amp;gt;}&lt;/SPAN&gt;&lt;SPAN&gt;value)&amp;nbsp;,Brand,Product)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jun 2019 03:51:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-ignore-the-dimension-in-a-table/m-p/1590712#M43364</guid>
      <dc:creator>Channa</dc:creator>
      <dc:date>2019-06-12T03:51:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to ignore the dimension in a table</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-ignore-the-dimension-in-a-table/m-p/1590720#M43365</link>
      <description>&lt;P&gt;&lt;EM&gt;&amp;gt;&amp;gt;1. Sum({&amp;lt;Year={'$(vMaxYear)'}&amp;gt;}value) .... 'value' is a filed, 'vMaxyear' is a variable.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;Not sure what the question is here. You could probably lose the quote marks if vMaxYear is numeric.&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt;&lt;EM&gt;2.&amp;nbsp;I need another expression to calculate the sum of value according to Brand and Product....&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;Use a partial total:&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;=Sum({&amp;lt;Year = {'$(vMaxYear)'}&amp;gt;} TOTAL &amp;lt;Country&amp;gt; value)&lt;BR /&gt;or&lt;BR /&gt;=Sum({&amp;lt;Year = {$(vMaxYear)}&amp;gt;} TOTAL &amp;lt;Country&amp;gt; value)&lt;BR /&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jun 2019 05:08:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-ignore-the-dimension-in-a-table/m-p/1590720#M43365</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2019-06-12T05:08:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to ignore the dimension in a table</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-ignore-the-dimension-in-a-table/m-p/1590721#M43366</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Sum(Total&amp;lt;Dimension&amp;gt;{&amp;lt;Year={'$(vMaxYear)'}&amp;gt;}value) can be used to ignore the particular dimension. If more than one dimension have to included you can do that with comma separated.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jun 2019 05:13:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-ignore-the-dimension-in-a-table/m-p/1590721#M43366</guid>
      <dc:creator>Nishanthi</dc:creator>
      <dc:date>2019-06-12T05:13:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to ignore the dimension in a table</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-ignore-the-dimension-in-a-table/m-p/1590722#M43367</link>
      <description>Thank you very much, I will do the test.</description>
      <pubDate>Wed, 12 Jun 2019 05:13:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-ignore-the-dimension-in-a-table/m-p/1590722#M43367</guid>
      <dc:creator>Kevinchinese</dc:creator>
      <dc:date>2019-06-12T05:13:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to ignore the dimension in a table</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-ignore-the-dimension-in-a-table/m-p/1590724#M43368</link>
      <description>this expression is working. Thanks again &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;</description>
      <pubDate>Wed, 12 Jun 2019 05:16:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-ignore-the-dimension-in-a-table/m-p/1590724#M43368</guid>
      <dc:creator>Kevinchinese</dc:creator>
      <dc:date>2019-06-12T05:16:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to ignore the dimension in a table</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-ignore-the-dimension-in-a-table/m-p/1816659#M66849</link>
      <description>&lt;P&gt;Thanks &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; it helps me a lot&lt;/P&gt;</description>
      <pubDate>Mon, 21 Jun 2021 16:41:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-ignore-the-dimension-in-a-table/m-p/1816659#M66849</guid>
      <dc:creator>lmartint</dc:creator>
      <dc:date>2021-06-21T16:41:23Z</dc:date>
    </item>
  </channel>
</rss>

