<?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: Calculating  monthly reports and more than one month together in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Calculating-monthly-reports-and-more-than-one-month-together/m-p/1868266#M71704</link>
    <description>&lt;P&gt;Sounds like you can just count(distinct Name) then. Assuming Stage1 can't be null, this is the same thing.&lt;/P&gt;</description>
    <pubDate>Wed, 08 Dec 2021 17:44:27 GMT</pubDate>
    <dc:creator>Or</dc:creator>
    <dc:date>2021-12-08T17:44:27Z</dc:date>
    <item>
      <title>Calculating  monthly reports and more than one month together</title>
      <link>https://community.qlik.com/t5/App-Development/Calculating-monthly-reports-and-more-than-one-month-together/m-p/1868166#M71690</link>
      <description>&lt;P&gt;I have this&amp;nbsp; data in QS and a monthly filter pane in QS (Last advance)&lt;/P&gt;
&lt;TABLE border="1" width="100%"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="20%" height="25px"&gt;name&lt;/TD&gt;
&lt;TD width="20%" height="25px"&gt;stage 1&amp;nbsp;&lt;/TD&gt;
&lt;TD width="20%" height="25px"&gt;stage 2&amp;nbsp;&lt;/TD&gt;
&lt;TD width="20%" height="25px"&gt;Last advance&amp;nbsp;&lt;/TD&gt;
&lt;TD width="20%" height="25px"&gt;month&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="20%" height="25px"&gt;Ana X&lt;/TD&gt;
&lt;TD width="20%" height="25px"&gt;1.10.2021&lt;/TD&gt;
&lt;TD width="20%" height="25px"&gt;-&lt;/TD&gt;
&lt;TD width="20%" height="25px"&gt;1.10.2021&lt;/TD&gt;
&lt;TD width="20%" height="25px"&gt;October&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="20%" height="25px"&gt;Ana X&lt;/TD&gt;
&lt;TD width="20%" height="25px"&gt;1.10.2021&lt;/TD&gt;
&lt;TD width="20%" height="25px"&gt;3.11.2021&lt;/TD&gt;
&lt;TD width="20%" height="25px"&gt;3.11.2021&lt;/TD&gt;
&lt;TD width="20%" height="25px"&gt;November&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;&amp;nbsp;When I do my monthly calculations the data are clean and no duplications.&amp;nbsp; In case I chose more then one month then the data overlap and I have duplications. What I want to do is that in the moment that I chose more than one month I want my calculations to be made only for distinct values between months.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;For example when I choose OCTOBER I&amp;nbsp;have one stage 1 . When I chose NOVEMBER I HAVE ONE STAGE 1 , BUT when I'm&amp;nbsp;going to chose&amp;nbsp; OCTOBER AND NOVEMBER I WANT TO AUTOMATICALLY HAVE STILL ONE STAGE 1 not 2&amp;nbsp; ,BECAUSE IN THIS CASE WE ARE TALKING FOR THE SAME PERSON.&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Dec 2021 15:42:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Calculating-monthly-reports-and-more-than-one-month-together/m-p/1868166#M71690</guid>
      <dc:creator>rexhina</dc:creator>
      <dc:date>2021-12-22T15:42:54Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating  monthly reports and more than one month together</title>
      <link>https://community.qlik.com/t5/App-Development/Calculating-monthly-reports-and-more-than-one-month-together/m-p/1868186#M71693</link>
      <description>&lt;P&gt;You could apply distinct, e.g. count(distinct name), but the specific formulas and syntax depend on what exactly you're trying to achieve, which isn't clear from your post.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Dec 2021 15:50:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Calculating-monthly-reports-and-more-than-one-month-together/m-p/1868186#M71693</guid>
      <dc:creator>Or</dc:creator>
      <dc:date>2021-12-08T15:50:15Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating  monthly reports and more than one month together</title>
      <link>https://community.qlik.com/t5/App-Development/Calculating-monthly-reports-and-more-than-one-month-together/m-p/1868198#M71694</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;i want for example count (stage 1 ) , but only for the distinct names , so to count&amp;nbsp; stage 1 only&amp;nbsp; for the latest&amp;nbsp; (last advance ) when i chose both months . but when i chose the month separately to normally count stage 1 .&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Dec 2021 16:01:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Calculating-monthly-reports-and-more-than-one-month-together/m-p/1868198#M71694</guid>
      <dc:creator>rexhina</dc:creator>
      <dc:date>2021-12-08T16:01:33Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating  monthly reports and more than one month together</title>
      <link>https://community.qlik.com/t5/App-Development/Calculating-monthly-reports-and-more-than-one-month-together/m-p/1868204#M71695</link>
      <description>&lt;P&gt;i have a complicated app that i have created&amp;nbsp; it works very well monthly , but in the moment that i choose more then one month , the numbers change (it just makes a sum of both months lets say ). what i want is that in the moment i have more than one month chosen&amp;nbsp; &amp;nbsp;i want all my calculations to be based on unique values of names so i don't want to have duplications between months (i have duplication between one month and i keep them because i need them ).&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Dec 2021 16:06:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Calculating-monthly-reports-and-more-than-one-month-together/m-p/1868204#M71695</guid>
      <dc:creator>rexhina</dc:creator>
      <dc:date>2021-12-08T16:06:54Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating  monthly reports and more than one month together</title>
      <link>https://community.qlik.com/t5/App-Development/Calculating-monthly-reports-and-more-than-one-month-together/m-p/1868266#M71704</link>
      <description>&lt;P&gt;Sounds like you can just count(distinct Name) then. Assuming Stage1 can't be null, this is the same thing.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Dec 2021 17:44:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Calculating-monthly-reports-and-more-than-one-month-together/m-p/1868266#M71704</guid>
      <dc:creator>Or</dc:creator>
      <dc:date>2021-12-08T17:44:27Z</dc:date>
    </item>
  </channel>
</rss>

