<?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: Qliksense Pivot table multiple measure comparison for single dimension with multiple values in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Qliksense-Pivot-table-multiple-measure-comparison-for-single/m-p/2143430#M93045</link>
    <description>&lt;P&gt;Like this &lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;If(Min(TOTAL &amp;lt;DATE,YEAR&amp;gt; Aggr(Sum(VALUE),TYPE,DATE,YEAR))=Max(TOTAL &amp;lt;DATE,YEAR&amp;gt; Aggr(Sum(VALUE),TYPE,DATE,YEAR)),green(),red())&lt;/FONT&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 01 Dec 2023 16:24:12 GMT</pubDate>
    <dc:creator>vincent_ardiet_</dc:creator>
    <dc:date>2023-12-01T16:24:12Z</dc:date>
    <item>
      <title>Qliksense Pivot table multiple measure comparison for single dimension with multiple values</title>
      <link>https://community.qlik.com/t5/App-Development/Qliksense-Pivot-table-multiple-measure-comparison-for-single/m-p/2140092#M92683</link>
      <description>&lt;P&gt;Hello All,&lt;/P&gt;
&lt;P&gt;I wanted to compare the multiple measures&amp;nbsp; of dimension and create new column with data like if all the measures are same then red else no colour.&lt;/P&gt;
&lt;P&gt;for eg:&amp;nbsp;&lt;/P&gt;
&lt;TABLE style="border-style: solid; width: 100%;" border="1" width="100%"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="20%"&gt;&lt;EM&gt;Week&lt;/EM&gt;&lt;/TD&gt;
&lt;TD width="20%"&gt;&lt;EM&gt;Date&lt;/EM&gt;&lt;/TD&gt;
&lt;TD width="20%"&gt;Name1&lt;/TD&gt;
&lt;TD width="20%"&gt;Name2&lt;/TD&gt;
&lt;TD width="10%"&gt;Name3&lt;/TD&gt;
&lt;TD width="10%"&gt;&lt;STRONG&gt;Delta&lt;/STRONG&gt;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;1&lt;/TD&gt;
&lt;TD&gt;1/2/2023&lt;/TD&gt;
&lt;TD&gt;100&lt;/TD&gt;
&lt;TD&gt;100&lt;/TD&gt;
&lt;TD&gt;100&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD&gt;1/3/2023&lt;/TD&gt;
&lt;TD&gt;100&lt;/TD&gt;
&lt;TD&gt;2&lt;/TD&gt;
&lt;TD&gt;100&lt;/TD&gt;
&lt;TD&gt;red()&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD&gt;1/4/2023&lt;/TD&gt;
&lt;TD&gt;100&lt;/TD&gt;
&lt;TD&gt;100&lt;/TD&gt;
&lt;TD&gt;100&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here &lt;STRONG&gt;Week&lt;/STRONG&gt; and &lt;STRONG&gt;Date&lt;/STRONG&gt; will be Row&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Name&lt;/STRONG&gt; will be column&lt;/P&gt;
&lt;P&gt;sum(&lt;STRONG&gt;sales&lt;/STRONG&gt;) would be measure&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Delta&lt;/STRONG&gt; is the extra column we need to create to compare measures of name1,2 and 3&lt;/P&gt;</description>
      <pubDate>Wed, 22 Nov 2023 05:42:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qliksense-Pivot-table-multiple-measure-comparison-for-single/m-p/2140092#M92683</guid>
      <dc:creator>Cbhuvi27</dc:creator>
      <dc:date>2023-11-22T05:42:51Z</dc:date>
    </item>
    <item>
      <title>Re: Qliksense Pivot table multiple measure comparison for single dimension with multiple values</title>
      <link>https://community.qlik.com/t5/App-Development/Qliksense-Pivot-table-multiple-measure-comparison-for-single/m-p/2140246#M92698</link>
      <description>&lt;P&gt;You can modify the properties of the pivot asking for totals at Name level.&lt;BR /&gt;Then playing with SecondaryDimensionality() could help, like this for example:&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;If (SecondaryDimensionality()&amp;gt;0,Sum(Sales), whatever_formula_you_want_to_compute)&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Nov 2023 10:52:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qliksense-Pivot-table-multiple-measure-comparison-for-single/m-p/2140246#M92698</guid>
      <dc:creator>vincent_ardiet_</dc:creator>
      <dc:date>2023-11-22T10:52:18Z</dc:date>
    </item>
    <item>
      <title>Re: Qliksense Pivot table multiple measure comparison for single dimension with multiple values</title>
      <link>https://community.qlik.com/t5/App-Development/Qliksense-Pivot-table-multiple-measure-comparison-for-single/m-p/2140335#M92715</link>
      <description>&lt;P&gt;Should I have this in what level, means in measures ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Nov 2023 13:41:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qliksense-Pivot-table-multiple-measure-comparison-for-single/m-p/2140335#M92715</guid>
      <dc:creator>Cbhuvi27</dc:creator>
      <dc:date>2023-11-22T13:41:53Z</dc:date>
    </item>
    <item>
      <title>Re: Qliksense Pivot table multiple measure comparison for single dimension with multiple values</title>
      <link>https://community.qlik.com/t5/App-Development/Qliksense-Pivot-table-multiple-measure-comparison-for-single/m-p/2140338#M92716</link>
      <description>&lt;P&gt;yes, in your measure&lt;/P&gt;</description>
      <pubDate>Wed, 22 Nov 2023 13:49:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qliksense-Pivot-table-multiple-measure-comparison-for-single/m-p/2140338#M92716</guid>
      <dc:creator>vincent_ardiet_</dc:creator>
      <dc:date>2023-11-22T13:49:46Z</dc:date>
    </item>
    <item>
      <title>Re: Qliksense Pivot table multiple measure comparison for single dimension with multiple values</title>
      <link>https://community.qlik.com/t5/App-Development/Qliksense-Pivot-table-multiple-measure-comparison-for-single/m-p/2140552#M92740</link>
      <description>&lt;P&gt;Still I am unable to get the expected results&lt;/P&gt;</description>
      <pubDate>Wed, 22 Nov 2023 23:35:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qliksense-Pivot-table-multiple-measure-comparison-for-single/m-p/2140552#M92740</guid>
      <dc:creator>Cbhuvi27</dc:creator>
      <dc:date>2023-11-22T23:35:41Z</dc:date>
    </item>
    <item>
      <title>Re: Qliksense Pivot table multiple measure comparison for single dimension with multiple values</title>
      <link>https://community.qlik.com/t5/App-Development/Qliksense-Pivot-table-multiple-measure-comparison-for-single/m-p/2140559#M92741</link>
      <description>&lt;P&gt;Create a measure Delta&lt;/P&gt;
&lt;P&gt;=If(Name1 = Name2 and Name2 = Name3, 'green()', 'red()')&lt;/P&gt;
&lt;P&gt;Customize the above based on your requirements to compare and drag it to your pivot.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Nov 2023 00:58:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qliksense-Pivot-table-multiple-measure-comparison-for-single/m-p/2140559#M92741</guid>
      <dc:creator>Aasir</dc:creator>
      <dc:date>2023-11-23T00:58:31Z</dc:date>
    </item>
    <item>
      <title>Re: Qliksense Pivot table multiple measure comparison for single dimension with multiple values</title>
      <link>https://community.qlik.com/t5/App-Development/Qliksense-Pivot-table-multiple-measure-comparison-for-single/m-p/2140677#M92754</link>
      <description>&lt;P&gt;Could you share the expression you used?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Nov 2023 08:11:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qliksense-Pivot-table-multiple-measure-comparison-for-single/m-p/2140677#M92754</guid>
      <dc:creator>vincent_ardiet_</dc:creator>
      <dc:date>2023-11-23T08:11:36Z</dc:date>
    </item>
    <item>
      <title>Re: Qliksense Pivot table multiple measure comparison for single dimension with multiple values</title>
      <link>https://community.qlik.com/t5/App-Development/Qliksense-Pivot-table-multiple-measure-comparison-for-single/m-p/2142631#M92953</link>
      <description>&lt;P&gt;IF((SUM({&amp;lt;Name={'$(=trim(SubField(GetFieldSelections(Name),',',1)))'}&amp;gt;} Sales)) = (SUM({&amp;lt;Name={'$(=trim(SubField(GetFieldSelections(Name),',',2)))'}&amp;gt;} Sales)) &lt;BR /&gt;AND (SUM({&amp;lt;Name={'$(=trim(SubField(GetFieldSelections(Name),',',2)))'}&amp;gt;} Sales)) = (SUM({&amp;lt;Name={'$(=trim(SubField(GetFieldSelections(Name),',',3)))'}&amp;gt;} Sales)),green(),red()))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note : I a using subfield and GetFieldSeelctions as I will be selecting the Names from filter&lt;/P&gt;</description>
      <pubDate>Thu, 30 Nov 2023 05:24:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qliksense-Pivot-table-multiple-measure-comparison-for-single/m-p/2142631#M92953</guid>
      <dc:creator>Cbhuvi27</dc:creator>
      <dc:date>2023-11-30T05:24:10Z</dc:date>
    </item>
    <item>
      <title>Re: Qliksense Pivot table multiple measure comparison for single dimension with multiple values</title>
      <link>https://community.qlik.com/t5/App-Development/Qliksense-Pivot-table-multiple-measure-comparison-for-single/m-p/2142759#M92967</link>
      <description>&lt;P&gt;And your table is a pivot? So, if you are selecting only 1 or 2 [Name] what is supposed to happen? Or with 4?&lt;BR /&gt;Maybe a simple table with 3 expressions for the 3 first value selected would be easier.&lt;BR /&gt;Before being able to give a color, are you able to display the value for the Delta column?&lt;BR /&gt;If you have a pivot, I guess that the measure is Sum(Sales).&lt;BR /&gt;If this is the case, you cannot add a new measures just for the end, that's why you have to play with&amp;nbsp;&lt;SPAN&gt;SecondaryDimensionality.&lt;BR /&gt;Something like&amp;nbsp;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;If (SecondaryDimensionality()&amp;gt;0,Sum(Sales), RangeMax(SUM({&amp;lt;Name={'$(=trim(SubField(GetFieldSelections(Name),',',1)))'}&amp;gt;} Sales)),SUM({&amp;lt;Name={'$(=trim(SubField(GetFieldSelections(Name),',',2)))'}&amp;gt;} Sales)),SUM({&amp;lt;Name={'$(=trim(SubField(GetFieldSelections(Name),',',3)))'}&amp;gt;} Sales)))-RangeMin(SUM({&amp;lt;Name={'$(=trim(SubField(GetFieldSelections(Name),',',1)))'}&amp;gt;} Sales)),SUM({&amp;lt;Name={'$(=trim(SubField(GetFieldSelections(Name),',',2)))'}&amp;gt;} Sales)),SUM({&amp;lt;Name={'$(=trim(SubField(GetFieldSelections(Name),',',3)))'}&amp;gt;} Sales))))&lt;/FONT&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Nov 2023 09:58:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qliksense-Pivot-table-multiple-measure-comparison-for-single/m-p/2142759#M92967</guid>
      <dc:creator>vincent_ardiet_</dc:creator>
      <dc:date>2023-11-30T09:58:24Z</dc:date>
    </item>
    <item>
      <title>Re: Qliksense Pivot table multiple measure comparison for single dimension with multiple values</title>
      <link>https://community.qlik.com/t5/App-Development/Qliksense-Pivot-table-multiple-measure-comparison-for-single/m-p/2142771#M92969</link>
      <description>&lt;P&gt;Yes Correct, I am using Pivot table, I can get the delta correct and using as dimension in left. User can select till max 5 Names. We need to compare the Sales for those selections. Eg : If user select 2 names then compare SUM(Sales) for Name1 and Name 2, if user selects 3 then compare Sum(Sales) for Name1,Name2 and NAme3 etc..&lt;/P&gt;</description>
      <pubDate>Thu, 30 Nov 2023 10:10:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qliksense-Pivot-table-multiple-measure-comparison-for-single/m-p/2142771#M92969</guid>
      <dc:creator>Cbhuvi27</dc:creator>
      <dc:date>2023-11-30T10:10:41Z</dc:date>
    </item>
    <item>
      <title>Re: Qliksense Pivot table multiple measure comparison for single dimension with multiple values</title>
      <link>https://community.qlik.com/t5/App-Development/Qliksense-Pivot-table-multiple-measure-comparison-for-single/m-p/2142774#M92970</link>
      <description>&lt;P&gt;Sorry, I don't get it, I don't see how you can compute the delta.&lt;BR /&gt;However, I don't see neither, why you wouldn't be able to get the color if you are already getting the number.&amp;nbsp;&lt;BR /&gt;And the easiest is to give a Label to you measure (like "Delta") and just use:&lt;BR /&gt;If("Delta"=0,green(),red())&lt;/P&gt;</description>
      <pubDate>Thu, 30 Nov 2023 10:20:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qliksense-Pivot-table-multiple-measure-comparison-for-single/m-p/2142774#M92970</guid>
      <dc:creator>vincent_ardiet_</dc:creator>
      <dc:date>2023-11-30T10:20:03Z</dc:date>
    </item>
    <item>
      <title>Re: Qliksense Pivot table multiple measure comparison for single dimension with multiple values</title>
      <link>https://community.qlik.com/t5/App-Development/Qliksense-Pivot-table-multiple-measure-comparison-for-single/m-p/2142790#M92975</link>
      <description>&lt;P&gt;I mean I used Calculated dimension for Delta for now. But main problem here is I wanted to highlight if the Sum(Sales) are different.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Cbhuvi27_0-1701340649552.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/120832iF0A69C3164A812A6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Cbhuvi27_0-1701340649552.png" alt="Cbhuvi27_0-1701340649552.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Nov 2023 10:37:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qliksense-Pivot-table-multiple-measure-comparison-for-single/m-p/2142790#M92975</guid>
      <dc:creator>Cbhuvi27</dc:creator>
      <dc:date>2023-11-30T10:37:49Z</dc:date>
    </item>
    <item>
      <title>Re: Qliksense Pivot table multiple measure comparison for single dimension with multiple values</title>
      <link>https://community.qlik.com/t5/App-Development/Qliksense-Pivot-table-multiple-measure-comparison-for-single/m-p/2142792#M92976</link>
      <description>&lt;P&gt;Assuming this is a pivot with an unknown number of Names, you'd need to do something with aggr() as a calculated dimension here. You can't have it be a measure as by definition Delta would be different than Name, meaning you would never have a full identical match.&lt;/P&gt;
&lt;P&gt;Something like this should probably work or at least be adaptable to what you want (Note - in my case some values are null, but this shouldn't be an issue for you since you seem to always have values):&lt;/P&gt;
&lt;P&gt;=aggr(if(Count(Distinct Aggr(Count(Dim3),Dim1,Dim2))&amp;gt;1,'Red'),Dim1)&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Or_2-1701340817367.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/120834i4BF8551E9E5007DB/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Or_2-1701340817367.png" alt="Or_2-1701340817367.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Nov 2023 10:40:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qliksense-Pivot-table-multiple-measure-comparison-for-single/m-p/2142792#M92976</guid>
      <dc:creator>Or</dc:creator>
      <dc:date>2023-11-30T10:40:25Z</dc:date>
    </item>
    <item>
      <title>Re: Qliksense Pivot table multiple measure comparison for single dimension with multiple values</title>
      <link>https://community.qlik.com/t5/App-Development/Qliksense-Pivot-table-multiple-measure-comparison-for-single/m-p/2142809#M92979</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Or&lt;/STRONG&gt; is right.&lt;BR /&gt;That's why you should try to have a look to add a sub total&amp;nbsp; and compute this delta there (unless you want to be able to do a selection)&lt;/P&gt;</description>
      <pubDate>Thu, 30 Nov 2023 10:50:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qliksense-Pivot-table-multiple-measure-comparison-for-single/m-p/2142809#M92979</guid>
      <dc:creator>vincent_ardiet_</dc:creator>
      <dc:date>2023-11-30T10:50:58Z</dc:date>
    </item>
    <item>
      <title>Re: Qliksense Pivot table multiple measure comparison for single dimension with multiple values</title>
      <link>https://community.qlik.com/t5/App-Development/Qliksense-Pivot-table-multiple-measure-comparison-for-single/m-p/2142820#M92981</link>
      <description>&lt;P&gt;We can ignore the delta part as that is the secondary requirement. I wanted to highlight the rows even if one of the SUM(Sales) are different&lt;/P&gt;</description>
      <pubDate>Thu, 30 Nov 2023 11:15:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qliksense-Pivot-table-multiple-measure-comparison-for-single/m-p/2142820#M92981</guid>
      <dc:creator>Cbhuvi27</dc:creator>
      <dc:date>2023-11-30T11:15:37Z</dc:date>
    </item>
    <item>
      <title>Re: Qliksense Pivot table multiple measure comparison for single dimension with multiple values</title>
      <link>https://community.qlik.com/t5/App-Development/Qliksense-Pivot-table-multiple-measure-comparison-for-single/m-p/2143161#M93001</link>
      <description>&lt;P&gt;I am using the below query to highlight but few rows are not getting highlighted in the right way&lt;/P&gt;
&lt;P&gt;=IF((SUM(AGGR(({&amp;lt;Name={'A'}&amp;gt;} Sales),Week,Day,Sales))=SUM(AGGR(({&amp;lt;Name={'B'}&amp;gt;} Sales),Week,Day,Sales))&lt;BR /&gt;AND SUM(AGGR(({&amp;lt;Name={'B'}&amp;gt;} Sales),Week,Day,Sales))= SUM(AGGR(({&amp;lt;Name={'C'}&amp;gt;} Sales),Week,Day,Sales))),green(),red())&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Cbhuvi27_0-1701415932778.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/120865i895EC14E6B6E7881/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Cbhuvi27_0-1701415932778.png" alt="Cbhuvi27_0-1701415932778.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;If Its different all cells of same row in red and if its same all cells in same row in green&lt;/P&gt;</description>
      <pubDate>Fri, 01 Dec 2023 07:32:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qliksense-Pivot-table-multiple-measure-comparison-for-single/m-p/2143161#M93001</guid>
      <dc:creator>Cbhuvi27</dc:creator>
      <dc:date>2023-12-01T07:32:49Z</dc:date>
    </item>
    <item>
      <title>Re: Qliksense Pivot table multiple measure comparison for single dimension with multiple values</title>
      <link>https://community.qlik.com/t5/App-Development/Qliksense-Pivot-table-multiple-measure-comparison-for-single/m-p/2143172#M93005</link>
      <description>&lt;P&gt;// Intermediate measures&lt;BR /&gt;SameSales_A = SUM({&amp;lt;Name={'A'}&amp;gt;} Sales);&lt;BR /&gt;SameSales_B = SUM({&amp;lt;Name={'B'}&amp;gt;} Sales);&lt;BR /&gt;SameSales_C = SUM({&amp;lt;Name={'C'}&amp;gt;} Sales);&lt;/P&gt;
&lt;P&gt;// Highlight expression&lt;BR /&gt;=IF(&lt;BR /&gt;SameSales_A = SameSales_B AND SameSales_B = SameSales_C,&lt;BR /&gt;green(),&lt;BR /&gt;red()&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Fri, 01 Dec 2023 07:56:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qliksense-Pivot-table-multiple-measure-comparison-for-single/m-p/2143172#M93005</guid>
      <dc:creator>Aasir</dc:creator>
      <dc:date>2023-12-01T07:56:33Z</dc:date>
    </item>
    <item>
      <title>Re: Qliksense Pivot table multiple measure comparison for single dimension with multiple values</title>
      <link>https://community.qlik.com/t5/App-Development/Qliksense-Pivot-table-multiple-measure-comparison-for-single/m-p/2143177#M93007</link>
      <description>&lt;P&gt;Sorry, could you please help with intermediate measure, means the variable ?&lt;/P&gt;</description>
      <pubDate>Fri, 01 Dec 2023 08:04:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qliksense-Pivot-table-multiple-measure-comparison-for-single/m-p/2143177#M93007</guid>
      <dc:creator>Cbhuvi27</dc:creator>
      <dc:date>2023-12-01T08:04:53Z</dc:date>
    </item>
    <item>
      <title>Re: Qliksense Pivot table multiple measure comparison for single dimension with multiple values</title>
      <link>https://community.qlik.com/t5/App-Development/Qliksense-Pivot-table-multiple-measure-comparison-for-single/m-p/2143270#M93013</link>
      <description>&lt;P&gt;anyone can help here pls&lt;/P&gt;</description>
      <pubDate>Fri, 01 Dec 2023 11:27:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qliksense-Pivot-table-multiple-measure-comparison-for-single/m-p/2143270#M93013</guid>
      <dc:creator>Cbhuvi27</dc:creator>
      <dc:date>2023-12-01T11:27:30Z</dc:date>
    </item>
    <item>
      <title>Re: Qliksense Pivot table multiple measure comparison for single dimension with multiple values</title>
      <link>https://community.qlik.com/t5/App-Development/Qliksense-Pivot-table-multiple-measure-comparison-for-single/m-p/2143311#M93023</link>
      <description>&lt;P&gt;For example with this dataset:&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Table1: &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Load year(DATE) as YEAR, * inline&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;[&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;DATE,TYPE,VALUE&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;31-12-2022,A1,10&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;31-12-2022,A2,10&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;31-12-2022,A3,15&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;10-04-2023,A1,23&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;10-04-2023,A2,13&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;10-04-2023,A3,3&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;13-02-2023,A1,55&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;13-02-2023,A2,55&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;13-02-2023,A3,55&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;14-01-2023,A1,10&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;14-01-2023,A2,90&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;14-01-2023,A3,30&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;10-04-2022,A1,45&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;10-04-2022,A2,45&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;10-04-2022,A3,45&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;15-02-2023,A1,3&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;15-02-2023,A2,23&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;15-02-2023,A3,63&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;];&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;You build a pivot table with YEAR,DATE for the rows, and TYPE as a column (with sub totals).&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vincent_ardiet__0-1701437933054.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/120889iD6FE79A6D9F3B90E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="vincent_ardiet__0-1701437933054.png" alt="vincent_ardiet__0-1701437933054.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then you put this measure:&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;=If(SecondaryDimensionality()&amp;gt;0,Sum(VALUE)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;,Min(Aggr(Sum(VALUE),TYPE,DATE,YEAR))=Max(Aggr(Sum(VALUE),TYPE,DATE,YEAR)))&lt;BR /&gt;&lt;BR /&gt;&lt;/FONT&gt;And you obtain something like this:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vincent_ardiet__1-1701437993346.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/120891iF9132EBB1590E36B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="vincent_ardiet__1-1701437993346.png" alt="vincent_ardiet__1-1701437993346.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Dec 2023 13:40:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qliksense-Pivot-table-multiple-measure-comparison-for-single/m-p/2143311#M93023</guid>
      <dc:creator>vincent_ardiet_</dc:creator>
      <dc:date>2023-12-01T13:40:00Z</dc:date>
    </item>
  </channel>
</rss>

