<?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 Problem with Show conditional in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Problem-with-Show-conditional/m-p/757110#M535513</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm trying to hide a chart when I select x values, so I wrote a condition but doesn't work.&lt;/P&gt;&lt;P&gt;I get tired of change my code one and other time and I coded in the conditional "0 = 1" but didn't work too. What can it be?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Leandro&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 17 Dec 2014 18:14:48 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2014-12-17T18:14:48Z</dc:date>
    <item>
      <title>Problem with Show conditional</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-Show-conditional/m-p/757110#M535513</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm trying to hide a chart when I select x values, so I wrote a condition but doesn't work.&lt;/P&gt;&lt;P&gt;I get tired of change my code one and other time and I coded in the conditional "0 = 1" but didn't work too. What can it be?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Leandro&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Dec 2014 18:14:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-Show-conditional/m-p/757110#M535513</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-12-17T18:14:48Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Show conditional</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-Show-conditional/m-p/757111#M535514</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you have a example of the application?&lt;/P&gt;&lt;P&gt;Try the basic to be sure: put a 0 or 1 in the condition field, to try hide/unhide the chart.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Dec 2014 19:28:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-Show-conditional/m-p/757111#M535514</guid>
      <dc:creator>german_avanzato</dc:creator>
      <dc:date>2014-12-17T19:28:33Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Show conditional</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-Show-conditional/m-p/757112#M535515</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in layout tab of your chart, conditional (x=2)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GetSelectedCount(yourfield)&amp;lt;&amp;gt;2&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Dec 2014 19:37:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-Show-conditional/m-p/757112#M535515</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2014-12-17T19:37:45Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Show conditional</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-Show-conditional/m-p/757113#M535516</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;you can use this expression in the chart show condition&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GetSelectedCount(Name_of_field)=0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;KR.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Dec 2014 19:38:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-Show-conditional/m-p/757113#M535516</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-12-17T19:38:35Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Show conditional</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-Show-conditional/m-p/757114#M535517</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You are talking about hiding the chart itself, right? On the Layout tab of the properties window is where you find the Conditional option for that. If you use 0=1 as expression the chart will hide itself. Don't use double quotes around the expression. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You'll want to use something like =if(getselectedcount(MyField)&amp;gt;10,0,1) which would hide the chart if you select more than 10 values in the field MyField. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Dec 2014 19:39:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-Show-conditional/m-p/757114#M535517</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2014-12-17T19:39:52Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Show conditional</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-Show-conditional/m-p/757115#M535518</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Elena&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use this simple expressions:&lt;/P&gt;&lt;P&gt;Conditional : GetSelectedCount(Company)&amp;gt;4,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so if i select more than 4 company. so my textbox will appear and if i selected lower than 4 Company, my textbox still hidding.&lt;/P&gt;&lt;P&gt;I hope, you´ll find it useful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Beck&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Dec 2014 11:52:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-Show-conditional/m-p/757115#M535518</guid>
      <dc:creator>beck_bakytbek</dc:creator>
      <dc:date>2014-12-18T11:52:35Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Show conditional</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-Show-conditional/m-p/757116#M535519</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Create one chart(like bar chart) and also create two buttons,also one variable&lt;/P&gt;&lt;P&gt;1st button-text(set to 0),add action (select in field-give variable and value(=0))&lt;/P&gt;&lt;P&gt;2nd button-text(set to 1),add action(select in field-give the same variable and value(=1))&lt;/P&gt;&lt;P&gt;in the chart goto layout condition (variable=0 or =1)&lt;/P&gt;&lt;P&gt;based on 1 the chart will display, based on 0 the chart will hide&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Dec 2014 12:11:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-Show-conditional/m-p/757116#M535519</guid>
      <dc:creator />
      <dc:date>2014-12-18T12:11:55Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Show conditional</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-Show-conditional/m-p/757117#M535520</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you are doing everything right(you believe) and still it is not hiding, there could be another possibility. Check the security settings(Settings-&amp;gt;Document Properties-&amp;gt;Security); &lt;STRONG&gt;un&lt;/STRONG&gt;check 'Show All Sheets and Objects'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Dec 2014 12:20:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-Show-conditional/m-p/757117#M535520</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2014-12-18T12:20:38Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Show conditional</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-Show-conditional/m-p/757118#M535521</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this at the Layout tab, Conditional field: if(count(distinct(Field))&amp;gt;0,0,1)&lt;/P&gt;&lt;P&gt;Hope it helps!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;T&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Dec 2014 12:23:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-Show-conditional/m-p/757118#M535521</guid>
      <dc:creator />
      <dc:date>2014-12-18T12:23:50Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Show conditional</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-Show-conditional/m-p/757119#M535522</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To add to this, sometimes weird behaviour is scene when your chart is a copy of another chart. If that is the case, then try creating a new chart from scratch.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Singh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Dec 2014 12:37:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-Show-conditional/m-p/757119#M535522</guid>
      <dc:creator />
      <dc:date>2014-12-18T12:37:47Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Show conditional</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-Show-conditional/m-p/757120#M535523</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'm trying to do this but I can't. Why I can't modify &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.7272720336914px;"&gt;Document Properties?&lt;/SPAN&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Dec 2014 15:16:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-Show-conditional/m-p/757120#M535523</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-12-22T15:16:58Z</dc:date>
    </item>
  </channel>
</rss>

