<?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: displaying a chart/kpi if a filter is selected in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/displaying-a-chart-kpi-if-a-filter-is-selected/m-p/1590157#M43300</link>
    <description>Which version of sense are you on. Latest versions comes with dashboard bundle which has a extension called show hide container . That should suit your need.&lt;BR /&gt;its available outside the bundle below&lt;BR /&gt;&lt;A href="https://developer.qlik.com/garden/583764c83dc0cfc4138afa26" target="_blank"&gt;https://developer.qlik.com/garden/583764c83dc0cfc4138afa26&lt;/A&gt;</description>
    <pubDate>Mon, 10 Jun 2019 19:00:13 GMT</pubDate>
    <dc:creator>dplr-rn</dc:creator>
    <dc:date>2019-06-10T19:00:13Z</dc:date>
    <item>
      <title>displaying a chart/kpi if a filter is selected</title>
      <link>https://community.qlik.com/t5/App-Development/displaying-a-chart-kpi-if-a-filter-is-selected/m-p/1590154#M43298</link>
      <description>&lt;P&gt;Hi -&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way to NOT display a chart or KPI unless a date is selected in the filter criteria ?&lt;/P&gt;&lt;P&gt;Therefore, IF&amp;nbsp;GetFieldSelections (DATE) is null, can you somehow not display a specific chart??&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks - Jerry&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jun 2019 18:53:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/displaying-a-chart-kpi-if-a-filter-is-selected/m-p/1590154#M43298</guid>
      <dc:creator>jerryr125</dc:creator>
      <dc:date>2019-06-10T18:53:49Z</dc:date>
    </item>
    <item>
      <title>Re: displaying a chart/kpi if a filter is selected</title>
      <link>https://community.qlik.com/t5/App-Development/displaying-a-chart-kpi-if-a-filter-is-selected/m-p/1590157#M43300</link>
      <description>Which version of sense are you on. Latest versions comes with dashboard bundle which has a extension called show hide container . That should suit your need.&lt;BR /&gt;its available outside the bundle below&lt;BR /&gt;&lt;A href="https://developer.qlik.com/garden/583764c83dc0cfc4138afa26" target="_blank"&gt;https://developer.qlik.com/garden/583764c83dc0cfc4138afa26&lt;/A&gt;</description>
      <pubDate>Mon, 10 Jun 2019 19:00:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/displaying-a-chart-kpi-if-a-filter-is-selected/m-p/1590157#M43300</guid>
      <dc:creator>dplr-rn</dc:creator>
      <dc:date>2019-06-10T19:00:13Z</dc:date>
    </item>
    <item>
      <title>Re: displaying a chart/kpi if a filter is selected</title>
      <link>https://community.qlik.com/t5/App-Development/displaying-a-chart-kpi-if-a-filter-is-selected/m-p/1590173#M43305</link>
      <description>&lt;P&gt;Hi - thanks for your response.&amp;nbsp; That feature only lets me select certain visualizations though.&lt;/P&gt;&lt;P&gt;Any other thoughts ? Jerry&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jun 2019 19:26:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/displaying-a-chart-kpi-if-a-filter-is-selected/m-p/1590173#M43305</guid>
      <dc:creator>jerryr125</dc:creator>
      <dc:date>2019-06-10T19:26:28Z</dc:date>
    </item>
    <item>
      <title>Re: displaying a chart/kpi if a filter is selected</title>
      <link>https://community.qlik.com/t5/App-Development/displaying-a-chart-kpi-if-a-filter-is-selected/m-p/1590178#M43307</link>
      <description>&lt;P&gt;I tried this - no luck:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;IF (GetFieldSeleactions (DATE) isnull(), 0, AMOUNT)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thoughts ? Jerry&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jun 2019 19:35:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/displaying-a-chart-kpi-if-a-filter-is-selected/m-p/1590178#M43307</guid>
      <dc:creator>jerryr125</dc:creator>
      <dc:date>2019-06-10T19:35:17Z</dc:date>
    </item>
    <item>
      <title>Re: displaying a chart/kpi if a filter is selected</title>
      <link>https://community.qlik.com/t5/App-Development/displaying-a-chart-kpi-if-a-filter-is-selected/m-p/1590193#M43309</link>
      <description>not sure about the restrictions. but&lt;BR /&gt;try if(GetSelectedCount(Date)=0, 0, AMOUNT)</description>
      <pubDate>Mon, 10 Jun 2019 19:58:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/displaying-a-chart-kpi-if-a-filter-is-selected/m-p/1590193#M43309</guid>
      <dc:creator>dplr-rn</dc:creator>
      <dc:date>2019-06-10T19:58:50Z</dc:date>
    </item>
    <item>
      <title>Re: displaying a chart/kpi if a filter is selected</title>
      <link>https://community.qlik.com/t5/App-Development/displaying-a-chart-kpi-if-a-filter-is-selected/m-p/1590196#M43311</link>
      <description>&lt;P&gt;if( IsNull(GetFieldSelections(DATE)), 0, AMOUNT)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;this did the trick ! Thanks&amp;nbsp; - Jerry&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jun 2019 20:32:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/displaying-a-chart-kpi-if-a-filter-is-selected/m-p/1590196#M43311</guid>
      <dc:creator>jerryr125</dc:creator>
      <dc:date>2019-06-10T20:32:43Z</dc:date>
    </item>
    <item>
      <title>Re: displaying a chart/kpi if a filter is selected</title>
      <link>https://community.qlik.com/t5/App-Development/displaying-a-chart-kpi-if-a-filter-is-selected/m-p/2035608#M85350</link>
      <description>&lt;P&gt;I was able to make this work in my App, but some of the months (that have data available) still show a 0, any thoughts on that?&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;if( IsNull(GetFieldSelections(DATE)), 0, AMOUNT)&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Feb 2023 17:11:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/displaying-a-chart-kpi-if-a-filter-is-selected/m-p/2035608#M85350</guid>
      <dc:creator>shelliM</dc:creator>
      <dc:date>2023-02-08T17:11:42Z</dc:date>
    </item>
  </channel>
</rss>

