<?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: Different selections for Numerator and Denominator in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Different-selections-for-Numerator-and-Denominator/m-p/1522132#M43992</link>
    <description>&lt;P&gt;Not entirely sure, but this could be because of the incorrect mapping you have in your cost table&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 350px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/2345i0071768B9F0485E2/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I believe that AUSTIN and HOUSTON should be from TX instead of CA, right? This is the script I used&lt;/P&gt;&lt;PRE&gt;Table1:
LOAD * INLINE [
    CITY, STATE, SALES
    DALLAS, TX, 3000
    DALLAS, TX, 800
    DALLAS, TX, 200
    AUSTIN, TX, 1500
    AUSTIN, TX, 500
    AUSTIN, TX, 1000
    HOUSTON, TX, 1000
    SFO, CA, 6000
    SFO, CA, 3000
    LA, CA, 4000
    SanDiego, CA, 5000
];

Table2:
LOAD * INLINE [
    CITY, STATE, COST
    DALLAS, TX, 1000
    ---, TX, 1400
    DALLAS, TX, 2300
    AUSTIN, TX, 900
    ---, TX, 400
    LA, CA, 1200
    LA, CA, 2300
    SFO, CA, 1500
    ----, CA, 870
    ----, CA, 4000
    SanDiego, CA, 130
];&lt;/PRE&gt;</description>
    <pubDate>Tue, 18 Dec 2018 12:23:55 GMT</pubDate>
    <dc:creator>sunny_talwar</dc:creator>
    <dc:date>2018-12-18T12:23:55Z</dc:date>
    <item>
      <title>Different selections for Numerator and Denominator</title>
      <link>https://community.qlik.com/t5/App-Development/Different-selections-for-Numerator-and-Denominator/m-p/1521797#M43989</link>
      <description>&lt;P&gt;I have two tables Table 1 and Table 2. I need to calculate a ratio.&lt;BR /&gt;Explained how i do manually, But need to implment in Qlik sense sheet.&lt;BR /&gt;for the denominator, i need to get sum by State, by ignoring CITY.&lt;BR /&gt;But in Numerator, it should be Sum of Sales by CITY.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Table 1:&lt;/P&gt;&lt;P&gt;CITY&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; STATE&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;SALES&lt;BR /&gt;==============================&lt;BR /&gt;DALLAS&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;TX&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;3000&lt;BR /&gt;DALLAS&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;TX&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;800&lt;BR /&gt;DALLAS&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;TX&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;200&lt;BR /&gt;AUSTIN&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;TX&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1500&lt;BR /&gt;AUSTIN&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;TX&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;500&lt;BR /&gt;AUSTIN&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; TX&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1000&lt;BR /&gt;HOUSTON&amp;nbsp; &amp;nbsp; &amp;nbsp; TX&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1000&lt;BR /&gt;SFO&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;CA&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 6000&lt;BR /&gt;SFO&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;CA&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 3000&lt;BR /&gt;LA&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; CA&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 4000&lt;BR /&gt;SanDiego&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; CA&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 5000&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Table 2:&lt;/P&gt;&lt;P&gt;CITY&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; STATE&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;COST&lt;BR /&gt;======================================&lt;BR /&gt;DALLAS&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;TX&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1000&lt;BR /&gt;---&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; TX&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1400&lt;BR /&gt;DALLAS&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; TX&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2300&lt;BR /&gt;AUSTIN&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; TX&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;900&lt;BR /&gt;---&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;TX&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;400&lt;BR /&gt;AUSTIN&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; CA&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1200&lt;BR /&gt;HOUSTON&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; CA&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2300&lt;BR /&gt;SFO&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;CA&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1500&lt;BR /&gt;----&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;CA&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;870&lt;BR /&gt;----&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;CA&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;4000&lt;BR /&gt;SanDiego&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;CA&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 130&lt;/P&gt;&lt;P&gt;Now, in qlik sense, i need to calculate&lt;BR /&gt;[SUM of SALES &lt;STRONG&gt;by CITY&lt;/STRONG&gt;] /[ SUM OF COST by &lt;STRONG&gt;STATE&lt;/STRONG&gt;]&lt;/P&gt;&lt;P&gt;for example :&lt;/P&gt;&lt;P&gt;CITY RATIO&lt;BR /&gt;=======================================================================&lt;BR /&gt;DALLAS&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;(3000+800+200)&amp;nbsp; &amp;nbsp; /&amp;nbsp; &amp;nbsp; (1000+1400+2300+900+400)&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= 0.67&lt;BR /&gt;AUSTIN&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;(1500+500+1000)&amp;nbsp; /&amp;nbsp; &amp;nbsp; (1000+1400+2300+900+400)&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= 0.5&lt;BR /&gt;HOUSTON&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;(1000)&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;/&amp;nbsp; &amp;nbsp; (1000+1400+2300+900+400)&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= 0.17&lt;BR /&gt;SFO&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; (6000+3000)&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; /&amp;nbsp; &amp;nbsp; &amp;nbsp;(1200+2300+1500+870+4000+130)&amp;nbsp; = 0.9&lt;BR /&gt;LA&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;(4000)&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;/&amp;nbsp; &amp;nbsp; &amp;nbsp;(1200+2300+1500+870+4000+130)&amp;nbsp; = 0.4&lt;BR /&gt;SanDiego&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; (5000)&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; /&amp;nbsp; &amp;nbsp; &amp;nbsp;(1200+2300+1500+870+4000+130)&amp;nbsp; = 0.5&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Can someone help with Qlik sense query for this ?&lt;BR /&gt;to make it in a sheet.&lt;/P&gt;&lt;P&gt;Thanks in Advance.&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 21:43:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Different-selections-for-Numerator-and-Denominator/m-p/1521797#M43989</guid>
      <dc:creator>flames</dc:creator>
      <dc:date>2024-11-16T21:43:10Z</dc:date>
    </item>
    <item>
      <title>Re: Different selections for Numerator and Denominator</title>
      <link>https://community.qlik.com/t5/App-Development/Different-selections-for-Numerator-and-Denominator/m-p/1521831#M43990</link>
      <description>&lt;P&gt;Try this&lt;/P&gt;&lt;PRE&gt;=Sum(SALES)/Aggr(NODISTINCT Sum(COST), STATE)&lt;/PRE&gt;</description>
      <pubDate>Mon, 17 Dec 2018 20:06:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Different-selections-for-Numerator-and-Denominator/m-p/1521831#M43990</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-12-17T20:06:14Z</dc:date>
    </item>
    <item>
      <title>Re: Different selections for Numerator and Denominator</title>
      <link>https://community.qlik.com/t5/App-Development/Different-selections-for-Numerator-and-Denominator/m-p/1521861#M43991</link>
      <description>&lt;P&gt;Thanks for the suggestion. But it's not getting calculated as per the requirement.&lt;/P&gt;&lt;P&gt;Here is the result.&lt;/P&gt;</description>
      <pubDate>Mon, 17 Dec 2018 23:30:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Different-selections-for-Numerator-and-Denominator/m-p/1521861#M43991</guid>
      <dc:creator>flames</dc:creator>
      <dc:date>2018-12-17T23:30:13Z</dc:date>
    </item>
    <item>
      <title>Re: Different selections for Numerator and Denominator</title>
      <link>https://community.qlik.com/t5/App-Development/Different-selections-for-Numerator-and-Denominator/m-p/1522132#M43992</link>
      <description>&lt;P&gt;Not entirely sure, but this could be because of the incorrect mapping you have in your cost table&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 350px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/2345i0071768B9F0485E2/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I believe that AUSTIN and HOUSTON should be from TX instead of CA, right? This is the script I used&lt;/P&gt;&lt;PRE&gt;Table1:
LOAD * INLINE [
    CITY, STATE, SALES
    DALLAS, TX, 3000
    DALLAS, TX, 800
    DALLAS, TX, 200
    AUSTIN, TX, 1500
    AUSTIN, TX, 500
    AUSTIN, TX, 1000
    HOUSTON, TX, 1000
    SFO, CA, 6000
    SFO, CA, 3000
    LA, CA, 4000
    SanDiego, CA, 5000
];

Table2:
LOAD * INLINE [
    CITY, STATE, COST
    DALLAS, TX, 1000
    ---, TX, 1400
    DALLAS, TX, 2300
    AUSTIN, TX, 900
    ---, TX, 400
    LA, CA, 1200
    LA, CA, 2300
    SFO, CA, 1500
    ----, CA, 870
    ----, CA, 4000
    SanDiego, CA, 130
];&lt;/PRE&gt;</description>
      <pubDate>Tue, 18 Dec 2018 12:23:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Different-selections-for-Numerator-and-Denominator/m-p/1522132#M43992</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-12-18T12:23:55Z</dc:date>
    </item>
    <item>
      <title>Re: Different selections for Numerator and Denominator</title>
      <link>https://community.qlik.com/t5/App-Development/Different-selections-for-Numerator-and-Denominator/m-p/1522294#M43993</link>
      <description>&lt;P&gt;i changed that, and ran.&lt;/P&gt;&lt;P&gt;but still couldn't get desired result.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;did you get the expected result with that query ?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;A:&lt;BR /&gt;LOAD * INLINE [ CITY,STATE,SALES&lt;BR /&gt;DALLAS,TX,3000&lt;BR /&gt;DALLAS,TX, 800&lt;BR /&gt;DALLAS,TX, 200&lt;BR /&gt;AUSTIN,TX,1500&lt;BR /&gt;AUSTIN,TX, 500&lt;BR /&gt;AUSTIN,TX,1000&lt;BR /&gt;HOUSTON,TX,1000,&lt;BR /&gt;SFO,CA,6000&lt;BR /&gt;SFO,CA,3000&lt;BR /&gt;LA,CA,4000&lt;BR /&gt;SanDiego,CA, 5000&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;Concatenate (A)&lt;BR /&gt;LOAD *&lt;BR /&gt;INLINE [ CITY,STATE,COST&lt;BR /&gt;DALLAS, TX,1000&lt;BR /&gt;-, TX,1400&lt;BR /&gt;DALLAS,TX,2300&lt;BR /&gt;AUSTIN, TX ,900&lt;BR /&gt;-,TX,400&lt;BR /&gt;AUSTIN, TX,1200&lt;BR /&gt;HOUSTON,TX,2300&lt;BR /&gt;SFO,CA,1500&lt;BR /&gt;-,CA, 870&lt;BR /&gt;-,CA,4000&lt;BR /&gt;SanDiego,CA,130];&lt;/P&gt;</description>
      <pubDate>Tue, 18 Dec 2018 17:52:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Different-selections-for-Numerator-and-Denominator/m-p/1522294#M43993</guid>
      <dc:creator>flames</dc:creator>
      <dc:date>2018-12-18T17:52:10Z</dc:date>
    </item>
    <item>
      <title>Re: Different selections for Numerator and Denominator</title>
      <link>https://community.qlik.com/t5/App-Development/Different-selections-for-Numerator-and-Denominator/m-p/1522301#M43994</link>
      <description>&lt;P&gt;Hahahaha now since you have changed them to TX... the denominator will change, right?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 663px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/2371i197100B1B5378CEA/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;But now we have 1200 for AUSTIN and 2300 for HOUSTON&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 210px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/2372i5343CD38F220DE4B/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;So, in your initial output image had 6000 for Texas in denominator... but now we have 9500 which will change your output, right? This is what I have&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 630px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/2373iA3F5D8B4354E5734/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Dec 2018 18:08:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Different-selections-for-Numerator-and-Denominator/m-p/1522301#M43994</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-12-18T18:08:22Z</dc:date>
    </item>
  </channel>
</rss>

