<?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: Bar chart - measure not in dimension in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Bar-chart-measure-not-in-dimension/m-p/1544951#M39272</link>
    <description>&lt;P&gt;What exactly will Total Admissions show? Everything including Acq Est Adm, BudgetAdm, Latest Est Adm?&lt;/P&gt;</description>
    <pubDate>Fri, 15 Feb 2019 12:39:37 GMT</pubDate>
    <dc:creator>sunny_talwar</dc:creator>
    <dc:date>2019-02-15T12:39:37Z</dc:date>
    <item>
      <title>Bar chart - measure not in dimension</title>
      <link>https://community.qlik.com/t5/App-Development/Bar-chart-measure-not-in-dimension/m-p/1544772#M39266</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a dimension which I want to show only some parts of in my bar chart, that worked fine so far:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Dimension:&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;=[% Budget Type]&lt;/PRE&gt;&lt;P&gt;&lt;STRONG&gt;Measure:&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;Sum({&amp;lt;[% Budget Type]={'Acq Est Adm','Budget Adm','Latest Est Adm'}&amp;gt;} [# Budget Value])&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This works fine, it shows exactly what I want it to show.&lt;/P&gt;&lt;P&gt;What I now need additionally in the same bar chart is to show another measure&lt;EM&gt; 'Total Admissions'&lt;/EM&gt;, which isn't part of the dimension &lt;EM&gt;[% Budget]&lt;/EM&gt;.&lt;/P&gt;&lt;P&gt;I can't for the life of me figure out how to add that measure as another bar in the bar chart. Is it possible at all?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Feb 2019 07:57:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Bar-chart-measure-not-in-dimension/m-p/1544772#M39266</guid>
      <dc:creator>david_kesselhei</dc:creator>
      <dc:date>2019-02-15T07:57:36Z</dc:date>
    </item>
    <item>
      <title>Re: Bar chart - measure not in dimension</title>
      <link>https://community.qlik.com/t5/App-Development/Bar-chart-measure-not-in-dimension/m-p/1544951#M39272</link>
      <description>&lt;P&gt;What exactly will Total Admissions show? Everything including Acq Est Adm, BudgetAdm, Latest Est Adm?&lt;/P&gt;</description>
      <pubDate>Fri, 15 Feb 2019 12:39:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Bar-chart-measure-not-in-dimension/m-p/1544951#M39272</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2019-02-15T12:39:37Z</dc:date>
    </item>
    <item>
      <title>Re: Bar chart - measure not in dimension</title>
      <link>https://community.qlik.com/t5/App-Development/Bar-chart-measure-not-in-dimension/m-p/1544953#M39273</link>
      <description>&lt;P&gt;Hey Sunny,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;'Total Admissions' is a different measure, it isn't contained in [% Budget Type] at all.&lt;/P&gt;</description>
      <pubDate>Fri, 15 Feb 2019 12:42:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Bar-chart-measure-not-in-dimension/m-p/1544953#M39273</guid>
      <dc:creator>david_kesselhei</dc:creator>
      <dc:date>2019-02-15T12:42:02Z</dc:date>
    </item>
    <item>
      <title>Re: Bar chart - measure not in dimension</title>
      <link>https://community.qlik.com/t5/App-Development/Bar-chart-measure-not-in-dimension/m-p/1544972#M39275</link>
      <description>&lt;P&gt;So, you have three bars right now and you are looking to add a 4th bar? May be try by adding an Island Table&lt;/P&gt;&lt;PRE&gt;Dim:
LOAD * INLINE [
Dim
1
2
];&lt;/PRE&gt;&lt;P&gt;and then in your chart, try this&lt;/P&gt;&lt;P&gt;Dimension&lt;/P&gt;&lt;PRE&gt;Pick(Dim, [% Budget Type], 'Total Admissions')&lt;/PRE&gt;&lt;P&gt;Expression&lt;/P&gt;&lt;PRE&gt;Pick(Dim,
Sum({&amp;lt;[% Budget Type]={'Acq Est Adm','Budget Adm','Latest Est Adm'}&amp;gt;} [# Budget Value]),
&lt;FONT color="#FF0000"&gt;ReplaceThisWithExpressionForTotalAdmissionsHere&lt;/FONT&gt;
)&lt;/PRE&gt;</description>
      <pubDate>Fri, 15 Feb 2019 12:56:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Bar-chart-measure-not-in-dimension/m-p/1544972#M39275</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2019-02-15T12:56:07Z</dc:date>
    </item>
    <item>
      <title>Re: Bar chart - measure not in dimension</title>
      <link>https://community.qlik.com/t5/App-Development/Bar-chart-measure-not-in-dimension/m-p/1544974#M39276</link>
      <description>&lt;P&gt;This works flawlessly, thank you! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now I need only to understand what I just did.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Feb 2019 13:02:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Bar-chart-measure-not-in-dimension/m-p/1544974#M39276</guid>
      <dc:creator>david_kesselhei</dc:creator>
      <dc:date>2019-02-15T13:02:02Z</dc:date>
    </item>
  </channel>
</rss>

