<?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: HIDE OBJECT in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/HIDE-OBJECT/m-p/1182204#M382971</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in Conditional Show use:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FindOneOf('department', GetCurrentSelections(Con))=1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; or&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; FindOneOf('employee',GetCurrentSelections(Con))=1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; or&amp;nbsp;&amp;nbsp;&amp;nbsp; FindOneOf('division',GetCurrentSelections(Con))=1&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 13 Sep 2016 07:20:23 GMT</pubDate>
    <dc:creator>robert_mika</dc:creator>
    <dc:date>2016-09-13T07:20:23Z</dc:date>
    <item>
      <title>HIDE OBJECT</title>
      <link>https://community.qlik.com/t5/QlikView/HIDE-OBJECT/m-p/1182200#M382967</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;i want to hide object base on condition&lt;/P&gt;&lt;P&gt;the condition should be-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i should see the object im the current selection is empty&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;if the the curren selection have field - "employee","department","division"&lt;/P&gt;&lt;P&gt;if one or more of those fields and only those fields are selected i should see the object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if a selection made on any othe field i want to hide the object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can i do it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;adi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Sep 2016 06:57:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/HIDE-OBJECT/m-p/1182200#M382967</guid>
      <dc:creator>adiarnon</dc:creator>
      <dc:date>2016-09-13T06:57:46Z</dc:date>
    </item>
    <item>
      <title>Re: HIDE OBJECT</title>
      <link>https://community.qlik.com/t5/QlikView/HIDE-OBJECT/m-p/1182201#M382968</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Create a big conditional show expression for this object that checks whether anything is selected in any of the remaining fields at all. You can use GetSelectedCount() to do that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Sep 2016 07:00:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/HIDE-OBJECT/m-p/1182201#M382968</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2016-09-13T07:00:55Z</dc:date>
    </item>
    <item>
      <title>Re: HIDE OBJECT</title>
      <link>https://community.qlik.com/t5/QlikView/HIDE-OBJECT/m-p/1182202#M382969</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Its easy to do the first part of your requirement- the show condition would be &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;=GetSelectedCount(employee)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; or GetSelectedCount(department)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; or GetSelectedCount(division)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To hide the object when any other selection made is more complicated. You could try&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;=(GetSelectedCount(employee)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; or GetSelectedCount(department)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; or GetSelectedCount(division))&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; and GetSelectedCount(otherfield1) = 0&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;EM&gt;&amp;nbsp; and &lt;SPAN style="font-size: 13.3333330154419px;"&gt;GetSelectedCount(otherfield2) = 0&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;EM&gt;&amp;nbsp; and &lt;SPAN style="font-size: 13.3333330154419px;"&gt;GetSelectedCount(otherfield3) = 0&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px; line-height: 1.5em;"&gt;&amp;nbsp; ...and so on&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will have to list all the other selectable fields in this expression.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Sep 2016 07:09:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/HIDE-OBJECT/m-p/1182202#M382969</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2016-09-13T07:09:39Z</dc:date>
    </item>
    <item>
      <title>Re: HIDE OBJECT</title>
      <link>https://community.qlik.com/t5/QlikView/HIDE-OBJECT/m-p/1182203#M382970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;but i have alot of other fields&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/confused.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Sep 2016 07:18:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/HIDE-OBJECT/m-p/1182203#M382970</guid>
      <dc:creator>adiarnon</dc:creator>
      <dc:date>2016-09-13T07:18:02Z</dc:date>
    </item>
    <item>
      <title>Re: HIDE OBJECT</title>
      <link>https://community.qlik.com/t5/QlikView/HIDE-OBJECT/m-p/1182204#M382971</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in Conditional Show use:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FindOneOf('department', GetCurrentSelections(Con))=1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; or&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; FindOneOf('employee',GetCurrentSelections(Con))=1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; or&amp;nbsp;&amp;nbsp;&amp;nbsp; FindOneOf('division',GetCurrentSelections(Con))=1&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Sep 2016 07:20:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/HIDE-OBJECT/m-p/1182204#M382971</guid>
      <dc:creator>robert_mika</dc:creator>
      <dc:date>2016-09-13T07:20:23Z</dc:date>
    </item>
    <item>
      <title>Re: HIDE OBJECT</title>
      <link>https://community.qlik.com/t5/QlikView/HIDE-OBJECT/m-p/1182205#M382972</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;Try This&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Chart Properties--&amp;gt;Layout--&amp;gt;Show-&amp;gt;Condition&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;len(GetCurrentSelections())=0 OR GetSelectedCount(&lt;/STRONG&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;employee)&amp;gt;0 OR &lt;SPAN style="font-size: 13.3333px;"&gt;GetSelectedCount(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;department&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;)&amp;gt;0 OR &lt;SPAN style="font-size: 13.3333px;"&gt;GetSelectedCount(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;division&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;)&amp;gt;0&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Sep 2016 07:21:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/HIDE-OBJECT/m-p/1182205#M382972</guid>
      <dc:creator>sasikanth</dc:creator>
      <dc:date>2016-09-13T07:21:54Z</dc:date>
    </item>
    <item>
      <title>Re: HIDE OBJECT</title>
      <link>https://community.qlik.com/t5/QlikView/HIDE-OBJECT/m-p/1182206#M382973</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here's a different take that removes the need to list all the fields in the expression:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;=(GetSelectedCount(employee)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; or GetSelectedCount(department)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; or GetSelectedCount(division))&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;And Alt(SubStringCount(GetCurrentSelections('|', '','', 0), '|') + 1, 0) &amp;lt;= RangeSum(&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; If(GetSelectedCount(employee), 1),&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; If(GetSelectedCount(department), 1),&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; If(GetSelectedCount(division), 1)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This counts the total number of field selections (the &lt;EM style="font-size: 13.3333330154419px;"&gt;Alt(SubStringCount(GetCurrentSelections('|', '','', 0), '|') + 1, 0) &lt;/EM&gt;part and counts the number of the employee/department\division fields selected. If another field has selections, then this condition should fail.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Sep 2016 07:23:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/HIDE-OBJECT/m-p/1182206#M382973</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2016-09-13T07:23:56Z</dc:date>
    </item>
    <item>
      <title>Re: HIDE OBJECT</title>
      <link>https://community.qlik.com/t5/QlikView/HIDE-OBJECT/m-p/1182207#M382974</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;but if a selection made on any othe field i want to hide the object.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Sep 2016 07:25:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/HIDE-OBJECT/m-p/1182207#M382974</guid>
      <dc:creator>adiarnon</dc:creator>
      <dc:date>2016-09-13T07:25:49Z</dc:date>
    </item>
    <item>
      <title>Re: HIDE OBJECT</title>
      <link>https://community.qlik.com/t5/QlikView/HIDE-OBJECT/m-p/1182208#M382975</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;but if a selection made on any other field i want to hide the object.&lt;/P&gt;&lt;P&gt;like if i have a selection on-&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;employee&lt;/STRONG&gt;&lt;/SPAN&gt; and &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;year&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;i dont want to see the object&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Sep 2016 07:27:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/HIDE-OBJECT/m-p/1182208#M382975</guid>
      <dc:creator>adiarnon</dc:creator>
      <dc:date>2016-09-13T07:27:36Z</dc:date>
    </item>
    <item>
      <title>Re: HIDE OBJECT</title>
      <link>https://community.qlik.com/t5/QlikView/HIDE-OBJECT/m-p/1182209#M382976</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 also try this attached file.&lt;/P&gt;&lt;P&gt;I have use this expression(&lt;STRONG&gt;=SubStringCount(Concat(Dimension, '|'), 'Division')&lt;/STRONG&gt;) in the attached application. !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Sep 2016 07:36:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/HIDE-OBJECT/m-p/1182209#M382976</guid>
      <dc:creator>susovan</dc:creator>
      <dc:date>2016-09-13T07:36:11Z</dc:date>
    </item>
    <item>
      <title>Re: HIDE OBJECT</title>
      <link>https://community.qlik.com/t5/QlikView/HIDE-OBJECT/m-p/1182210#M382977</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You may try using system field $Field as - &lt;/P&gt;&lt;P&gt;=WildMatch(GetFieldSelections($Field),'*Customer Name*','*Country*','*ChannelId*')&lt;/P&gt;&lt;P&gt;This will show object if listed three fields are selected(any combination), if rest of the fields are selected, condition will be false.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Sep 2016 07:40:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/HIDE-OBJECT/m-p/1182210#M382977</guid>
      <dc:creator>Digvijay_Singh</dc:creator>
      <dc:date>2016-09-13T07:40:22Z</dc:date>
    </item>
    <item>
      <title>Re: HIDE OBJECT</title>
      <link>https://community.qlik.com/t5/QlikView/HIDE-OBJECT/m-p/1182211#M382978</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Other than the specified conditions if you select any filter it will be hided ..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Sep 2016 07:42:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/HIDE-OBJECT/m-p/1182211#M382978</guid>
      <dc:creator>sasikanth</dc:creator>
      <dc:date>2016-09-13T07:42:32Z</dc:date>
    </item>
    <item>
      <title>Re: HIDE OBJECT</title>
      <link>https://community.qlik.com/t5/QlikView/HIDE-OBJECT/m-p/1182212#M382979</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i found a solution-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;isnull&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;SubStringCount&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;( &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;GetCurrentSelections&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(':', ',', '@', 100), ':')+1),1,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;( &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;SubStringCount&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;( &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;GetCurrentSelections&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(':', ',', '@', 100), ':')+1&amp;gt;&lt;BR /&gt; (&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;WildMatch&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;getcurrentselections&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; (':', '=', ';', 0 ),'*employee=*')&lt;BR /&gt; +&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;WildMatch&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;getcurrentselections&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; (':', '=', ';', 0 ),'*department=*')&lt;BR /&gt; +&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;WildMatch&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;getcurrentselections&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; (':', '=', ';', 0 ),'*division')),&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;0,1)) &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Sep 2016 13:14:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/HIDE-OBJECT/m-p/1182212#M382979</guid>
      <dc:creator>adiarnon</dc:creator>
      <dc:date>2016-09-13T13:14:54Z</dc:date>
    </item>
  </channel>
</rss>

