<?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 Chart Dimension should be restricted by Expression Availability in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Chart-Dimension-should-be-restricted-by-Expression-Availability/m-p/1040543#M524391</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a chart with Dimension as Material(A).The Expression are Consumption(B) and Consumption Limits(C).&lt;/P&gt;&lt;P&gt;Now I don't have all the Consumption limits(C) available readily for all the Material(A).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I should show only materials(A) which has Consumption limits others should be hided.&lt;/P&gt;&lt;P&gt;When the consumption limits is available then we can show the other Materials(A).&lt;/P&gt;&lt;P&gt;In other words Material (A) which doesnt have Consumption limits(NULL or Zero) should be not shown in chart&lt;/P&gt;&lt;P&gt;What formulae or calculated dimension should be written in the chart.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 16 Feb 2016 06:59:21 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2016-02-16T06:59:21Z</dc:date>
    <item>
      <title>Chart Dimension should be restricted by Expression Availability</title>
      <link>https://community.qlik.com/t5/QlikView/Chart-Dimension-should-be-restricted-by-Expression-Availability/m-p/1040543#M524391</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a chart with Dimension as Material(A).The Expression are Consumption(B) and Consumption Limits(C).&lt;/P&gt;&lt;P&gt;Now I don't have all the Consumption limits(C) available readily for all the Material(A).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I should show only materials(A) which has Consumption limits others should be hided.&lt;/P&gt;&lt;P&gt;When the consumption limits is available then we can show the other Materials(A).&lt;/P&gt;&lt;P&gt;In other words Material (A) which doesnt have Consumption limits(NULL or Zero) should be not shown in chart&lt;/P&gt;&lt;P&gt;What formulae or calculated dimension should be written in the chart.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Feb 2016 06:59:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Chart-Dimension-should-be-restricted-by-Expression-Availability/m-p/1040543#M524391</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-02-16T06:59:21Z</dc:date>
    </item>
    <item>
      <title>Re: Chart Dimension should be restricted by Expression Availability</title>
      <link>https://community.qlik.com/t5/QlikView/Chart-Dimension-should-be-restricted-by-Expression-Availability/m-p/1040544#M524392</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;I would use a calculated dimension, something like&lt;/P&gt;&lt;P&gt;IF(ISNULL([&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Consumption Limits]) = 0 or [&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Consumption Limits] &amp;lt;&amp;gt; 0, &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Material)&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Feb 2016 08:32:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Chart-Dimension-should-be-restricted-by-Expression-Availability/m-p/1040544#M524392</guid>
      <dc:creator>Mark_Little</dc:creator>
      <dc:date>2016-02-16T08:32:16Z</dc:date>
    </item>
    <item>
      <title>Re: Chart Dimension should be restricted by Expression Availability</title>
      <link>https://community.qlik.com/t5/QlikView/Chart-Dimension-should-be-restricted-by-Expression-Availability/m-p/1040545#M524393</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think you can adjust your expressions to handle this as well:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1st Expression for Consumption:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If(Column(2) &amp;gt; 0, ConsumptionExpression)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2nd Expression for Consumption Limit:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ConsumptionLimitsExpression&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and then make sure to have 'Suppress Zero Values' checked on the presentation tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NOTE: it is important to have order of expression right because we are using Column() function. Here it is checking if Column(2) (the expression for ConsumptionLimitsExpression &amp;gt; 0 or not) So if you change these two expressions around then use the column number for your consumptionLimitsExpression.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this will help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Sunny&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Feb 2016 09:45:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Chart-Dimension-should-be-restricted-by-Expression-Availability/m-p/1040545#M524393</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-02-16T09:45:09Z</dc:date>
    </item>
  </channel>
</rss>

