<?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 count the Output of a Measure in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/How-to-count-the-Output-of-a-Measure/m-p/38872#M2684</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I have&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF(IsNull(AARO_Booking_Period) and IsNull(Status),'R0',If (IsNull(Status),'R1',Status),'R0')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Which I created as a measure to Output either 'Status' or R0/R1. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to try and develop a methos where I can take this Master Status Measure and run a Count IF. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So how many R0 are there for the UK etc. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sum(Aggr( IF(IsNull(AARO_Booking_Period) and IsNull(Status),'R0',If (IsNull(Status),'R1',Status),'R0'), [Master Status]))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but it does not work &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any Ideas would be greatly appreciated. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many Thanks &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 22 Dec 2021 15:42:54 GMT</pubDate>
    <dc:creator>mikegauntlett</dc:creator>
    <dc:date>2021-12-22T15:42:54Z</dc:date>
    <item>
      <title>How to count the Output of a Measure</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-count-the-Output-of-a-Measure/m-p/38872#M2684</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I have&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF(IsNull(AARO_Booking_Period) and IsNull(Status),'R0',If (IsNull(Status),'R1',Status),'R0')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Which I created as a measure to Output either 'Status' or R0/R1. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to try and develop a methos where I can take this Master Status Measure and run a Count IF. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So how many R0 are there for the UK etc. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sum(Aggr( IF(IsNull(AARO_Booking_Period) and IsNull(Status),'R0',If (IsNull(Status),'R1',Status),'R0'), [Master Status]))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but it does not work &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any Ideas would be greatly appreciated. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many Thanks &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Dec 2021 15:42:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-count-the-Output-of-a-Measure/m-p/38872#M2684</guid>
      <dc:creator>mikegauntlett</dc:creator>
      <dc:date>2021-12-22T15:42:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to count the Output of a Measure</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-count-the-Output-of-a-Measure/m-p/38873#M2685</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is something not right about this if statement...&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;IF(IsNull(AARO_Booking_Period) and IsNull(Status),'R0',If (IsNull(Status),'R1',Status),'R0')&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does it work for you? I see an extra 'R0' at the end&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;If(IsNull(AARO_Booking_Period) and IsNull(Status),'R0',&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(IsNull(Status), 'R1', Status),&lt;SPAN style="color: #ff0000;"&gt;'R0'&lt;/SPAN&gt;)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't think this is right... because the first statement's true is R0..., but if it is false then you have another if statement... this next statement has its own true (R1) and false(status)... what is the R0 for?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Mar 2018 11:42:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-count-the-Output-of-a-Measure/m-p/38873#M2685</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-03-16T11:42:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to count the Output of a Measure</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-count-the-Output-of-a-Measure/m-p/38874#M2686</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry Yes, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF(IsNull(AARO_Booking_Period) and IsNull(Status),'R0',If (IsNull(Status),'R1',Status))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Mar 2018 11:57:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-count-the-Output-of-a-Measure/m-p/38874#M2686</guid>
      <dc:creator>mikegauntlett</dc:creator>
      <dc:date>2018-03-16T11:57:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to count the Output of a Measure</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-count-the-Output-of-a-Measure/m-p/38875#M2687</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;Sum(Aggr(If(IsNull(AARO_Booking_Period) and IsNull(Status),1, 0), [Master Status]))&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Sum(Aggr(If(IsNull(AARO_Booking_Period) and IsNull(Status),1, 0), [Master Status], Country))&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Mar 2018 12:00:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-count-the-Output-of-a-Measure/m-p/38875#M2687</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-03-16T12:00:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to count the Output of a Measure</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-count-the-Output-of-a-Measure/m-p/38876#M2688</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Simple form - perhaps just this -&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Sum(If(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;IsNull(AARO_Booking_Period) and IsNull(Status)&lt;/SPAN&gt;, 1, 0))&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;in a table or chart with the relevant dimensions like Country...&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Mar 2018 12:02:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-count-the-Output-of-a-Measure/m-p/38876#M2688</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2018-03-16T12:02:52Z</dc:date>
    </item>
  </channel>
</rss>

