<?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: Compare two mesures in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Compare-two-mesures/m-p/2532886#M108155</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/332416"&gt;@JFaucher&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Did you try to hide null values on the dimension?&lt;/P&gt;&lt;P&gt;Could you send a screenshot?&lt;/P&gt;</description>
    <pubDate>Wed, 08 Oct 2025 15:06:16 GMT</pubDate>
    <dc:creator>hugo_andrade</dc:creator>
    <dc:date>2025-10-08T15:06:16Z</dc:date>
    <item>
      <title>Compare two mesures</title>
      <link>https://community.qlik.com/t5/App-Development/Compare-two-mesures/m-p/2532840#M108150</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I want to compare two measurements to determine whether the previous one is greater than the next one. This works, but the problem is that I have extra rows appearing in my table because I am comparing data from the previous month. How can I prevent my column from adding extra rows?&lt;/P&gt;
&lt;P&gt;Regardss&lt;/P&gt;</description>
      <pubDate>Wed, 08 Oct 2025 09:06:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Compare-two-mesures/m-p/2532840#M108150</guid>
      <dc:creator>JFaucher</dc:creator>
      <dc:date>2025-10-08T09:06:52Z</dc:date>
    </item>
    <item>
      <title>Re: Compare two mesures</title>
      <link>https://community.qlik.com/t5/App-Development/Compare-two-mesures/m-p/2532886#M108155</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/332416"&gt;@JFaucher&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Did you try to hide null values on the dimension?&lt;/P&gt;&lt;P&gt;Could you send a screenshot?&lt;/P&gt;</description>
      <pubDate>Wed, 08 Oct 2025 15:06:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Compare-two-mesures/m-p/2532886#M108155</guid>
      <dc:creator>hugo_andrade</dc:creator>
      <dc:date>2025-10-08T15:06:16Z</dc:date>
    </item>
    <item>
      <title>Re: Compare two mesures</title>
      <link>https://community.qlik.com/t5/App-Development/Compare-two-mesures/m-p/2532888#M108157</link>
      <description>&lt;P&gt;Also, could you please share the Dimension, and Measures used?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 08 Oct 2025 15:07:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Compare-two-mesures/m-p/2532888#M108157</guid>
      <dc:creator>hugo_andrade</dc:creator>
      <dc:date>2025-10-08T15:07:02Z</dc:date>
    </item>
    <item>
      <title>Re: Compare two mesures</title>
      <link>https://community.qlik.com/t5/App-Development/Compare-two-mesures/m-p/2533000#M108171</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;This is the expression of my measure :&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;If(
  Sum({$&amp;lt;DateFinMois = {"$(=Max(DateFinMois))"}&amp;gt;} MontantImpayesCompte)
  &amp;gt;
  Sum({$&amp;lt;DateFinMois = {"$(=MonthEnd(AddMonths(Max(DateFinMois), -1)))"}&amp;gt;} MontantImpayesCompte),
  '▲',
  If(
    Sum({$&amp;lt;DateFinMois = {"$(=Max(DateFinMois))"}&amp;gt;} MontantImpayesCompte)
    &amp;lt;
    Sum({$&amp;lt;DateFinMois = {"$(=MonthEnd(AddMonths(Max(DateFinMois), -1)))"}&amp;gt;} MontantImpayesCompte),
    '▼',
    '-'
  )
)&lt;/LI-CODE&gt;
&lt;P&gt;I can't hide null values because i need it&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;</description>
      <pubDate>Thu, 09 Oct 2025 13:13:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Compare-two-mesures/m-p/2533000#M108171</guid>
      <dc:creator>JFaucher</dc:creator>
      <dc:date>2025-10-09T13:13:44Z</dc:date>
    </item>
    <item>
      <title>Re: Compare two mesures</title>
      <link>https://community.qlik.com/t5/App-Development/Compare-two-mesures/m-p/2533020#M108174</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/332416"&gt;@JFaucher&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;Got it. The “extra rows” show up because your measure pulls values from the previous month, which brings in dimension values that might not exist in the current month.&lt;/P&gt;&lt;P&gt;What is the dimension used on that chart?&lt;/P&gt;&lt;P&gt;Would you like to &lt;STRONG&gt;compare only for the same entities that exist in both months?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Before doing the ▲/▼, first check if the current-month sum is zero/absent; if so, return &lt;STRONG&gt;Null()&lt;/STRONG&gt;. That way the column won’t materialize rows that only exist in the prior month.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Oct 2025 16:01:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Compare-two-mesures/m-p/2533020#M108174</guid>
      <dc:creator>hugo_andrade</dc:creator>
      <dc:date>2025-10-09T16:01:09Z</dc:date>
    </item>
    <item>
      <title>Re: Compare two mesures</title>
      <link>https://community.qlik.com/t5/App-Development/Compare-two-mesures/m-p/2533062#M108175</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/28877"&gt;@hugo_andrade&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It's not so much a question of whether the entity exists or not, but rather of comparing an unpaid amount between the current month and the previous month. That's what I do in my summary. The problem is that I have other columns containing dimensions, and this creates rows because in the previous month the values in these columns were different from those in the current month.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Oct 2025 07:37:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Compare-two-mesures/m-p/2533062#M108175</guid>
      <dc:creator>JFaucher</dc:creator>
      <dc:date>2025-10-10T07:37:15Z</dc:date>
    </item>
    <item>
      <title>Re: Compare two mesures</title>
      <link>https://community.qlik.com/t5/App-Development/Compare-two-mesures/m-p/2533072#M108176</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/332416"&gt;@JFaucher&lt;/a&gt;&amp;nbsp; ,If possible, please share a sample output or your expected result so we can get a clearer understanding of what you're aiming for.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Oct 2025 09:04:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Compare-two-mesures/m-p/2533072#M108176</guid>
      <dc:creator>Amit_Prajapati</dc:creator>
      <dc:date>2025-10-10T09:04:30Z</dc:date>
    </item>
    <item>
      <title>Re: Compare two mesures</title>
      <link>https://community.qlik.com/t5/App-Development/Compare-two-mesures/m-p/2533368#M108209</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/334743"&gt;@Amit_Prajapati&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have :&lt;/P&gt;
&lt;TABLE border="1" width="43.0687162209588%"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="10%" height="69px"&gt;Name&lt;/TD&gt;
&lt;TD width="10%" height="69px"&gt;Number&lt;/TD&gt;
&lt;TD width="10%" height="69px"&gt;Date&lt;/TD&gt;
&lt;TD width="10%" height="69px"&gt;Unpaid&lt;/TD&gt;
&lt;TD width="10%" height="69px"&gt;Comparaison between m and m - 1&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="10%" height="25px"&gt;Dupont&lt;/TD&gt;
&lt;TD width="10%" height="25px"&gt;1&lt;/TD&gt;
&lt;TD width="10%" height="25px"&gt;Date1&amp;nbsp;&lt;/TD&gt;
&lt;TD width="10%" height="25px"&gt;100&lt;/TD&gt;
&lt;TD width="10%" height="25px"&gt;Up&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="10%" height="25px"&gt;Dupont&lt;/TD&gt;
&lt;TD width="10%" height="25px"&gt;1&lt;/TD&gt;
&lt;TD width="10%" height="25px"&gt;Date2&lt;/TD&gt;
&lt;TD width="10%" height="25px"&gt;0&lt;/TD&gt;
&lt;TD width="10%" height="25px"&gt;Down&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;First line is the current month and the second line appears because on my last column i compare current month with the last month&lt;/P&gt;
&lt;P&gt;And I want :&lt;/P&gt;
&lt;TABLE border="1" width="43.0687162209588%"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="10%" height="69px"&gt;Name&lt;/TD&gt;
&lt;TD width="10%" height="69px"&gt;Number&lt;/TD&gt;
&lt;TD width="10%" height="69px"&gt;Date&lt;/TD&gt;
&lt;TD width="10%" height="69px"&gt;Unpaid&lt;/TD&gt;
&lt;TD width="10%" height="69px"&gt;Comparaison between m and m - 1&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="10%" height="25px"&gt;Dupont&lt;/TD&gt;
&lt;TD width="10%" height="25px"&gt;1&lt;/TD&gt;
&lt;TD width="10%" height="25px"&gt;Date1&amp;nbsp;&lt;/TD&gt;
&lt;TD width="10%" height="25px"&gt;100&lt;/TD&gt;
&lt;TD width="10%" height="25px"&gt;Up&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;</description>
      <pubDate>Tue, 14 Oct 2025 09:57:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Compare-two-mesures/m-p/2533368#M108209</guid>
      <dc:creator>JFaucher</dc:creator>
      <dc:date>2025-10-14T09:57:26Z</dc:date>
    </item>
  </channel>
</rss>

