<?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: To hide a chart when we select on a particular value in list box in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/To-hide-a-chart-when-we-select-on-a-particular-value-in-list-box/m-p/596540#M1102844</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use this expression for the conditional show to hide the chart when Domestic is selected and show the chart for other selections.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If(only(region)='Domestic', 0, 1)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 20 Apr 2014 11:50:41 GMT</pubDate>
    <dc:creator>Colin-Albert</dc:creator>
    <dc:date>2014-04-20T11:50:41Z</dc:date>
    <item>
      <title>To hide a chart when we select on a particular value in list box</title>
      <link>https://community.qlik.com/t5/QlikView/To-hide-a-chart-when-we-select-on-a-particular-value-in-list-box/m-p/596538#M1102842</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 need to hide a chart ,When i select on a 'Domestic' value in list box and i need to show the chart when i select on 'International ' value in the list box.&lt;/P&gt;&lt;P&gt;Can you please tell me how to write the expression in layout of the chart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 20 Apr 2014 11:15:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/To-hide-a-chart-when-we-select-on-a-particular-value-in-list-box/m-p/596538#M1102842</guid>
      <dc:creator>polisetti</dc:creator>
      <dc:date>2014-04-20T11:15:01Z</dc:date>
    </item>
    <item>
      <title>Re: To hide a chart when we select on a particular value in list box</title>
      <link>https://community.qlik.com/t5/QlikView/To-hide-a-chart-when-we-select-on-a-particular-value-in-list-box/m-p/596539#M1102843</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;You could use a conditional show on the Layout tab:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if(GetSelectedCount(region)=1,if(region='International',1,0),1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See attached qvw. for the example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Paul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 20 Apr 2014 11:30:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/To-hide-a-chart-when-we-select-on-a-particular-value-in-list-box/m-p/596539#M1102843</guid>
      <dc:creator />
      <dc:date>2014-04-20T11:30:43Z</dc:date>
    </item>
    <item>
      <title>Re: To hide a chart when we select on a particular value in list box</title>
      <link>https://community.qlik.com/t5/QlikView/To-hide-a-chart-when-we-select-on-a-particular-value-in-list-box/m-p/596540#M1102844</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use this expression for the conditional show to hide the chart when Domestic is selected and show the chart for other selections.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If(only(region)='Domestic', 0, 1)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 20 Apr 2014 11:50:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/To-hide-a-chart-when-we-select-on-a-particular-value-in-list-box/m-p/596540#M1102844</guid>
      <dc:creator>Colin-Albert</dc:creator>
      <dc:date>2014-04-20T11:50:41Z</dc:date>
    </item>
    <item>
      <title>Re: To hide a chart when we select on a particular value in list box</title>
      <link>https://community.qlik.com/t5/QlikView/To-hide-a-chart-when-we-select-on-a-particular-value-in-list-box/m-p/596541#M1102845</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please clear requirement in details with a example and if understand clearly when if you select Domestic want to hide International and if select International hide Domestic if so then use below script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For Domestic chart type this code in the Properties &amp;gt;&amp;gt; Layout &amp;gt;&amp;gt; Show conditional.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if(GetSelectedCount(region)=0,1,GetFieldSelections(region)='Domestic')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For International chart type this code in the Properties &amp;gt;&amp;gt; Layout &amp;gt;&amp;gt; Show conditional.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if(GetSelectedCount(region)=0,1,GetFieldSelections(region)='International')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 20 Apr 2014 12:45:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/To-hide-a-chart-when-we-select-on-a-particular-value-in-list-box/m-p/596541#M1102845</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-04-20T12:45:26Z</dc:date>
    </item>
    <item>
      <title>Re: To hide a chart when we select on a particular value in list box</title>
      <link>https://community.qlik.com/t5/QlikView/To-hide-a-chart-when-we-select-on-a-particular-value-in-list-box/m-p/596542#M1102846</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;You could use two layers with below&amp;nbsp; conditions (see&lt;BR /&gt;attached *.qvw).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;* if (getSelectedCount(region)=1, if (region='Domestic',&lt;BR /&gt;1,0), 1) in show conditional of chart 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;* if (getSelectedCount(region)=1, if (region='International',&lt;BR /&gt;1,0), 1) in chart 2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 20 Apr 2014 13:36:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/To-hide-a-chart-when-we-select-on-a-particular-value-in-list-box/m-p/596542#M1102846</guid>
      <dc:creator>Joseph_Musekura</dc:creator>
      <dc:date>2014-04-20T13:36:51Z</dc:date>
    </item>
    <item>
      <title>Re: To hide a chart when we select on a particular value in list box</title>
      <link>https://community.qlik.com/t5/QlikView/To-hide-a-chart-when-we-select-on-a-particular-value-in-list-box/m-p/596543#M1102847</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In Chart &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Properties --&amp;gt; Tab Layout --&amp;gt; Show --&amp;gt; Conditional&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;expression&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; region='International'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;IMG alt="1.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/57593_1.png" style="width: auto; height: auto;" /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 20 Apr 2014 19:56:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/To-hide-a-chart-when-we-select-on-a-particular-value-in-list-box/m-p/596543#M1102847</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2014-04-20T19:56:37Z</dc:date>
    </item>
  </channel>
</rss>

