<?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 Bar chart: what to do if there are data for empty values in dimension in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Bar-chart-what-to-do-if-there-are-data-for-empty-values-in/m-p/647782#M474610</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have an incomplete dataset whereby I have sales by salesman but then I have sales not done by any of my recorded salesmen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example,&lt;BR /&gt;&lt;EM&gt;Mr Smith&lt;/EM&gt; has &lt;EM&gt;£3000.00&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Mr Jones&lt;/EM&gt; has &lt;EM&gt;£5004.50&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Mr Thomas&lt;/EM&gt; has &lt;EM&gt;£9000.21&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Mr Taylor&lt;/EM&gt; has &lt;EM&gt;£203.99&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;then empty value has &lt;EM&gt;£9000000.32&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How would in a bar chart I be able to ignore the bar chart representing the empty value?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 08 Sep 2014 12:49:07 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-09-08T12:49:07Z</dc:date>
    <item>
      <title>Bar chart: what to do if there are data for empty values in dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Bar-chart-what-to-do-if-there-are-data-for-empty-values-in/m-p/647782#M474610</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have an incomplete dataset whereby I have sales by salesman but then I have sales not done by any of my recorded salesmen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example,&lt;BR /&gt;&lt;EM&gt;Mr Smith&lt;/EM&gt; has &lt;EM&gt;£3000.00&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Mr Jones&lt;/EM&gt; has &lt;EM&gt;£5004.50&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Mr Thomas&lt;/EM&gt; has &lt;EM&gt;£9000.21&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Mr Taylor&lt;/EM&gt; has &lt;EM&gt;£203.99&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;then empty value has &lt;EM&gt;£9000000.32&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How would in a bar chart I be able to ignore the bar chart representing the empty value?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Sep 2014 12:49:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Bar-chart-what-to-do-if-there-are-data-for-empty-values-in/m-p/647782#M474610</guid>
      <dc:creator />
      <dc:date>2014-09-08T12:49:07Z</dc:date>
    </item>
    <item>
      <title>Re: Bar chart: what to do if there are data for empty values in dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Bar-chart-what-to-do-if-there-are-data-for-empty-values-in/m-p/647783#M474611</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Go to your Script and instead of salesman, write below expression&lt;/P&gt;&lt;P&gt;If(Len(Trim(salesman))=0 or IsNull(salesman), Null(), salesman) as salesman,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now&lt;/P&gt;&lt;P&gt;Go to dimension tab of your Bar Chart&lt;/P&gt;&lt;P&gt;and tick Suppress when value is NULL&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Sep 2014 12:57:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Bar-chart-what-to-do-if-there-are-data-for-empty-values-in/m-p/647783#M474611</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2014-09-08T12:57:09Z</dc:date>
    </item>
    <item>
      <title>Re: Bar chart: what to do if there are data for empty values in dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Bar-chart-what-to-do-if-there-are-data-for-empty-values-in/m-p/647784#M474612</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried out the isnull statement but that didn't work, but the length of the trim worked&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Sep 2014 14:21:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Bar-chart-what-to-do-if-there-are-data-for-empty-values-in/m-p/647784#M474612</guid>
      <dc:creator />
      <dc:date>2014-09-08T14:21:06Z</dc:date>
    </item>
  </channel>
</rss>

