<?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 hide and active sheet object while making selection? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/hide-and-active-sheet-object-while-making-selection/m-p/1276614#M517680</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;I want to enable my current selection box when any selection made in sheet, rest of time it should hide. What is the way to do that help on it .&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 17 Dec 2016 02:57:58 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2016-12-17T02:57:58Z</dc:date>
    <item>
      <title>hide and active sheet object while making selection?</title>
      <link>https://community.qlik.com/t5/QlikView/hide-and-active-sheet-object-while-making-selection/m-p/1276614#M517680</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;I want to enable my current selection box when any selection made in sheet, rest of time it should hide. What is the way to do that help on it .&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 17 Dec 2016 02:57:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/hide-and-active-sheet-object-while-making-selection/m-p/1276614#M517680</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-12-17T02:57:58Z</dc:date>
    </item>
    <item>
      <title>Re: hide and active sheet object while making selection?</title>
      <link>https://community.qlik.com/t5/QlikView/hide-and-active-sheet-object-while-making-selection/m-p/1276615#M517681</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Create a variable vShow. Like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET vShow = IF(Getcurrentselections() &amp;gt;0, 1,0);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then in any sheet object properties -&amp;gt; Go to Layout Tab -&amp;gt; check conditional&amp;nbsp; and type =vShow&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this would work. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 17 Dec 2016 03:55:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/hide-and-active-sheet-object-while-making-selection/m-p/1276615#M517681</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2016-12-17T03:55:45Z</dc:date>
    </item>
    <item>
      <title>Re: hide and active sheet object while making selection?</title>
      <link>https://community.qlik.com/t5/QlikView/hide-and-active-sheet-object-while-making-selection/m-p/1276616#M517682</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi vishwanath,&lt;/P&gt;&lt;P&gt;Thank u, but my requirement is initially current selection box should be hide, when made selections it would be active show.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 17 Dec 2016 04:19:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/hide-and-active-sheet-object-while-making-selection/m-p/1276616#M517682</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-12-17T04:19:32Z</dc:date>
    </item>
    <item>
      <title>Re: hide and active sheet object while making selection?</title>
      <link>https://community.qlik.com/t5/QlikView/hide-and-active-sheet-object-while-making-selection/m-p/1276617#M517683</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pavan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Replace the variable definition with this logic &lt;/P&gt;&lt;P&gt;"=if(count(GetCurrentSelections())&amp;gt;0,1,0)" and go to current selection box properties --&amp;gt; layout ---&amp;gt; show---&amp;gt; conditional&lt;/P&gt;&lt;P&gt;and write vShow=1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm sure it'll work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 17 Dec 2016 05:05:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/hide-and-active-sheet-object-while-making-selection/m-p/1276617#M517683</guid>
      <dc:creator>sudhir0538</dc:creator>
      <dc:date>2016-12-17T05:05:57Z</dc:date>
    </item>
    <item>
      <title>Re: hide and active sheet object while making selection?</title>
      <link>https://community.qlik.com/t5/QlikView/hide-and-active-sheet-object-while-making-selection/m-p/1276618#M517684</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi sudhir its perfectly working. Thanx on ur work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 17 Dec 2016 10:56:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/hide-and-active-sheet-object-while-making-selection/m-p/1276618#M517684</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-12-17T10:56:28Z</dc:date>
    </item>
  </channel>
</rss>

