<?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 Master Measure not shown in a specific row in a table in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Master-Measure-not-shown-in-a-specific-row-in-a-table/m-p/2119825#M91224</link>
    <description>&lt;P&gt;Hi together,&lt;/P&gt;
&lt;P&gt;I'm confused and I hope anyone could help me.&lt;/P&gt;
&lt;P&gt;For a specfic pnl -&amp;nbsp; table I've&amp;nbsp; created a dimension table.&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;
&lt;LI-CODE lang="markup"&gt;dimension_tbl:

Load * INLINE [
RowsRollingPeriod,
"absolut",
"-.-",
"change abs.",
"change %",
"concentration",
"-..-",
"avg. change abs.",
"max. change abs.",
"min. change abs.",
"-...-",
"avg. change %",
"max. change %",
"min. change %",

];

&lt;/LI-CODE&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;
&lt;P&gt;For all these rows I'm calculation the measures via master measure for specific time periods. All these master measures&amp;nbsp;&lt;/P&gt;
&lt;P&gt;are working correct. I can use them&amp;nbsp; for KPI fields e.g.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To allocate the master measures to my "own" dimensions I'm working with PICK &amp;amp; MATCH.&lt;/P&gt;
&lt;P&gt;Example:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;=PICK (MATCH(RowsRollingPeriod, 'absolut', 
								'-.-', 
                                'change abs.',
                                'change %',
                                'concentration', 
                                '-..-',
                                'avg. change abs.',
                                'max. change abs.',
                                'min. change abs.',
								'-...-',
								'avg. change %',
								'max. change %',
								'min. change %'
                                ),
		
        //absolut
        sum_bal_local_PreviousDay,
	//-.-
	'',
        //change abs.
        delta_currPrev_day,
        //change %
        num(delta_perc_currPrev_day, '#.##0,00%'),
        //concentration
        num(concen_PrevDay, '#.##0,00%'),
        //-..-
        '',
        //average change abs.
        avg_balance_prev_day,
	// max change abs
    	//0,    
        max_balance_current_prev_day,
        // min. change abs
        0,
        //-...-
        '',
        //avg. change %
        0,
		// max change %
        0,
        // min. change %
        0
        )

 &lt;/LI-CODE&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;
&lt;P&gt;All this is working great. But when I'm going to add an master measure which is working with MAX/AVG/MIN in combination with AGGR&amp;nbsp; this measure can only be shown in the first row.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;E.G.&amp;nbsp; Master Measure with identifies the max change betwenn two days in a specific time period&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt; MAX  (AGGR    (   
        		 Above (  Sum ( {$ &amp;lt;TYPE={'BALANCES'} , BOOKING_DATE = {"&amp;gt;=$(vPreviousDate) "} &amp;gt;}     LCY_AMT )) -
        	            Sum ( {$ &amp;lt;TYPE={'BALANCES'} , BOOKING_DATE = {"&amp;gt;=$(vPreviousDate) "} &amp;gt;}     LCY_AMT)
        
           , BOOKING_DATE)
        )
        
        
        
        &lt;/LI-CODE&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;
&lt;P&gt;Putting this measure in the first line of my PICK | MATCH field it works.&lt;/P&gt;
&lt;P&gt;Trying to bring this in the correct position ("max abs. change") the field won't be shown.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Anyone an idea why QlikSense is not working as I expect?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for your help&lt;/P&gt;
&lt;P&gt;André&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;
&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>Tue, 19 Sep 2023 06:50:26 GMT</pubDate>
    <dc:creator>AndreH</dc:creator>
    <dc:date>2023-09-19T06:50:26Z</dc:date>
    <item>
      <title>Master Measure not shown in a specific row in a table</title>
      <link>https://community.qlik.com/t5/App-Development/Master-Measure-not-shown-in-a-specific-row-in-a-table/m-p/2119825#M91224</link>
      <description>&lt;P&gt;Hi together,&lt;/P&gt;
&lt;P&gt;I'm confused and I hope anyone could help me.&lt;/P&gt;
&lt;P&gt;For a specfic pnl -&amp;nbsp; table I've&amp;nbsp; created a dimension table.&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;
&lt;LI-CODE lang="markup"&gt;dimension_tbl:

Load * INLINE [
RowsRollingPeriod,
"absolut",
"-.-",
"change abs.",
"change %",
"concentration",
"-..-",
"avg. change abs.",
"max. change abs.",
"min. change abs.",
"-...-",
"avg. change %",
"max. change %",
"min. change %",

];

&lt;/LI-CODE&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;
&lt;P&gt;For all these rows I'm calculation the measures via master measure for specific time periods. All these master measures&amp;nbsp;&lt;/P&gt;
&lt;P&gt;are working correct. I can use them&amp;nbsp; for KPI fields e.g.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To allocate the master measures to my "own" dimensions I'm working with PICK &amp;amp; MATCH.&lt;/P&gt;
&lt;P&gt;Example:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;=PICK (MATCH(RowsRollingPeriod, 'absolut', 
								'-.-', 
                                'change abs.',
                                'change %',
                                'concentration', 
                                '-..-',
                                'avg. change abs.',
                                'max. change abs.',
                                'min. change abs.',
								'-...-',
								'avg. change %',
								'max. change %',
								'min. change %'
                                ),
		
        //absolut
        sum_bal_local_PreviousDay,
	//-.-
	'',
        //change abs.
        delta_currPrev_day,
        //change %
        num(delta_perc_currPrev_day, '#.##0,00%'),
        //concentration
        num(concen_PrevDay, '#.##0,00%'),
        //-..-
        '',
        //average change abs.
        avg_balance_prev_day,
	// max change abs
    	//0,    
        max_balance_current_prev_day,
        // min. change abs
        0,
        //-...-
        '',
        //avg. change %
        0,
		// max change %
        0,
        // min. change %
        0
        )

 &lt;/LI-CODE&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;
&lt;P&gt;All this is working great. But when I'm going to add an master measure which is working with MAX/AVG/MIN in combination with AGGR&amp;nbsp; this measure can only be shown in the first row.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;E.G.&amp;nbsp; Master Measure with identifies the max change betwenn two days in a specific time period&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt; MAX  (AGGR    (   
        		 Above (  Sum ( {$ &amp;lt;TYPE={'BALANCES'} , BOOKING_DATE = {"&amp;gt;=$(vPreviousDate) "} &amp;gt;}     LCY_AMT )) -
        	            Sum ( {$ &amp;lt;TYPE={'BALANCES'} , BOOKING_DATE = {"&amp;gt;=$(vPreviousDate) "} &amp;gt;}     LCY_AMT)
        
           , BOOKING_DATE)
        )
        
        
        
        &lt;/LI-CODE&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;
&lt;P&gt;Putting this measure in the first line of my PICK | MATCH field it works.&lt;/P&gt;
&lt;P&gt;Trying to bring this in the correct position ("max abs. change") the field won't be shown.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Anyone an idea why QlikSense is not working as I expect?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for your help&lt;/P&gt;
&lt;P&gt;André&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;
&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>Tue, 19 Sep 2023 06:50:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Master-Measure-not-shown-in-a-specific-row-in-a-table/m-p/2119825#M91224</guid>
      <dc:creator>AndreH</dc:creator>
      <dc:date>2023-09-19T06:50:26Z</dc:date>
    </item>
    <item>
      <title>Re: Master Measure not shown in a specific row in a table</title>
      <link>https://community.qlik.com/t5/App-Development/Master-Measure-not-shown-in-a-specific-row-in-a-table/m-p/2120307#M91248</link>
      <description>&lt;P&gt;Additional: If I store the Formel in a variable it works... don't know why&lt;/P&gt;</description>
      <pubDate>Wed, 20 Sep 2023 09:10:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Master-Measure-not-shown-in-a-specific-row-in-a-table/m-p/2120307#M91248</guid>
      <dc:creator>AndreH</dc:creator>
      <dc:date>2023-09-20T09:10:29Z</dc:date>
    </item>
  </channel>
</rss>

