<?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 with Custom Ranges in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Bar-Chart-with-Custom-Ranges/m-p/424412#M1166906</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Please see the attached file..&lt;/P&gt;&lt;P&gt;Sheet name: Bucket&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 19 Sep 2012 21:53:08 GMT</pubDate>
    <dc:creator>MayilVahanan</dc:creator>
    <dc:date>2012-09-19T21:53:08Z</dc:date>
    <item>
      <title>Bar Chart with Custom Ranges</title>
      <link>https://community.qlik.com/t5/QlikView/Bar-Chart-with-Custom-Ranges/m-p/424409#M1166903</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am struggling with creating the necessary calculated dimension / expression to create a bar chart with custom ranges.&amp;nbsp; Please see my data set below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" width="177"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="xl65" height="20" width="77"&gt;Trade ID&lt;/TD&gt;&lt;TD class="xl65" width="100"&gt;Amount in EUR&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;56465461&lt;/TD&gt;&lt;TD align="right" class="xl66"&gt;€ 23,000.00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;564894&lt;/TD&gt;&lt;TD align="right" class="xl66"&gt;€ 51,500.00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;5616516&lt;/TD&gt;&lt;TD align="right" class="xl66"&gt;€ 100,000.00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;4894198494&lt;/TD&gt;&lt;TD align="right" class="xl66"&gt;€ 123,000.00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;8165161&lt;/TD&gt;&lt;TD align="right" class="xl66"&gt;€ 890.00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;984194&lt;/TD&gt;&lt;TD align="right" class="xl66"&gt;€ 12,312,323.00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20"&gt;5615618&lt;/TD&gt;&lt;TD align="right" class="xl66"&gt;€ 590.00&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to create the bar chart showing the # of trades that fall into the following buckets &lt;STRONG&gt;while using an "if Statement":&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" width="100"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD height="20" width="100"&gt;Amount in EUR - Buckets&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;0 - 25,000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;25,000 - 50,000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;50,000 - 100,000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;100,000-200,000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;200,000 +&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Each Trade ID is unique.&amp;nbsp; Please help or my keyboard gets thrown across the room!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2012 21:21:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Bar-Chart-with-Custom-Ranges/m-p/424409#M1166903</guid>
      <dc:creator />
      <dc:date>2012-09-19T21:21:03Z</dc:date>
    </item>
    <item>
      <title>Re: Bar Chart with Custom Ranges</title>
      <link>https://community.qlik.com/t5/QlikView/Bar-Chart-with-Custom-Ranges/m-p/424410#M1166904</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Try like this, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In script ,&lt;/P&gt;&lt;P&gt;Load *, if(Amount in EUR &amp;gt;= 0 and Amount in EUR &amp;lt;= 25000,'0-25000', if(Amount in EUR &amp;lt;= 50000,'25000-50000',&lt;/P&gt;&lt;P&gt;if(Amount in EUR &amp;lt;=100000,'50000-100000',if(Amount in EUR &amp;lt;= 200000, '100000-200000','200000+')))) as Bucket from tablename;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then use Bucket as dimension, and count(Trade ID) as Exp&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2012 21:26:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Bar-Chart-with-Custom-Ranges/m-p/424410#M1166904</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2012-09-19T21:26:27Z</dc:date>
    </item>
    <item>
      <title>Re: Bar Chart with Custom Ranges</title>
      <link>https://community.qlik.com/t5/QlikView/Bar-Chart-with-Custom-Ranges/m-p/424411#M1166905</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I agree that should work, but I am also trying to understand how to do this through using "if statements".&amp;nbsp; I believe I will need to create a custom dimension, but I am having trouble with getting getting started in the right direction...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any ideas?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2012 21:38:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Bar-Chart-with-Custom-Ranges/m-p/424411#M1166905</guid>
      <dc:creator />
      <dc:date>2012-09-19T21:38:22Z</dc:date>
    </item>
    <item>
      <title>Re: Bar Chart with Custom Ranges</title>
      <link>https://community.qlik.com/t5/QlikView/Bar-Chart-with-Custom-Ranges/m-p/424412#M1166906</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Please see the attached file..&lt;/P&gt;&lt;P&gt;Sheet name: Bucket&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2012 21:53:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Bar-Chart-with-Custom-Ranges/m-p/424412#M1166906</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2012-09-19T21:53:08Z</dc:date>
    </item>
  </channel>
</rss>

