<?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 Clear other fields in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Clear-other-fields/m-p/325348#M580558</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sridhar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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; Thanx for your replay its working for sheet1 only and from sheet2 and sheet3 if i click&amp;nbsp; clear all still its navigating to main sheet.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 27 Dec 2011 13:36:23 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-12-27T13:36:23Z</dc:date>
    <item>
      <title>Clear other fields</title>
      <link>https://community.qlik.com/t5/QlikView/Clear-other-fields/m-p/325340#M580550</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi I have a listbox(Listbox1) with values &lt;STRONG&gt;Sheet1,Sheet2,Sheet3&lt;/STRONG&gt;. Based on selection a new sheets appears.&lt;/P&gt;&lt;P&gt;I have an issue whenever I select Clear all , Selections should not apply on my Listbox1. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In sheet properties I have tried &lt;STRONG&gt;Clear other fields&lt;/STRONG&gt; action but it does not work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest on how can resolve this without using buttons.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Dec 2011 11:12:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Clear-other-fields/m-p/325340#M580550</guid>
      <dc:creator />
      <dc:date>2011-12-27T11:12:23Z</dc:date>
    </item>
    <item>
      <title>Clear other fields</title>
      <link>https://community.qlik.com/t5/QlikView/Clear-other-fields/m-p/325341#M580551</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; in list box properties-&amp;gt; general-&amp;gt; ALWAYS ONE VALUE SELECTED-&amp;gt; CHECK IT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Dec 2011 11:21:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Clear-other-fields/m-p/325341#M580551</guid>
      <dc:creator>SunilChauhan</dc:creator>
      <dc:date>2011-12-27T11:21:59Z</dc:date>
    </item>
    <item>
      <title>Clear other fields</title>
      <link>https://community.qlik.com/t5/QlikView/Clear-other-fields/m-p/325342#M580552</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; I have already selected ALWAYS ONE VALUE SELECTED. Whenever i'm using clear selection it is navigating to Sheet3.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Dec 2011 11:33:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Clear-other-fields/m-p/325342#M580552</guid>
      <dc:creator />
      <dc:date>2011-12-27T11:33:27Z</dc:date>
    </item>
    <item>
      <title>Re: Clear other fields</title>
      <link>https://community.qlik.com/t5/QlikView/Clear-other-fields/m-p/325343#M580553</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;Clear All does exactly what it says, so it's irrespective fo the number and name of the fields in your data model. But if waht you want is to keep all three sheets hidden in the Clear All button is clicked, you can set a conditional like the following, to make the user select one, two or all values in the field rather than clearing selections and showing all three sheets. I'm assuming that the name that stores the Sheet values is "Show", and possible values are "Sheet1", "Sheet2", and so. So in the sheet Properties, General, Conditional&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;=Match('Sheet1', $(=Chr(39) &amp;amp; GetFieldSelections(Show, Chr(39) &amp;amp; Chr(44) &amp;amp; Chr(39), Count({1} TOTAL Show)) &amp;amp; Chr(39)))&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And repeat this same condition for each possible value of Show. This will show the sheet when one or more values are selected in the field "Show", but when clicked "Clear All" all three sheets will become hidden.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you mean you want to keep visibility then you need to use variables instead of fields so when Clear All is clicked, variables keep their values. You can easily create a new variable vSheetNames in the Settings menu, Variable Overview, storing all possible values:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;'Sheet1','Sheet2','Sheet3'&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, this will only allow you to select only one sheet visible at a time, since variables cannot store more than two values. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Miguel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Dec 2011 11:33:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Clear-other-fields/m-p/325343#M580553</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2011-12-27T11:33:43Z</dc:date>
    </item>
    <item>
      <title>Re: Clear other fields</title>
      <link>https://community.qlik.com/t5/QlikView/Clear-other-fields/m-p/325344#M580554</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;Miguel Angel Baeyens wrote:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you mean you want to keep visibility then you need to use variables instead of fields so when Clear All is clicked, variables keep their values. You can easily create a new variable vSheetNames in the Settings menu, Variable Overview, storing all possible values:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="jive-pre notranslate"&gt;&lt;CODE class="jive-code"&gt;'Sheet1','Sheet2','Sheet3'
&lt;/CODE&gt;&lt;/PRE&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;However, this will only allow you to select only one sheet visible at a time, since variables cannot store more than two values. &lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Hope that helps.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Miguel&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;&lt;P&gt;What you could do (assuming you start with sheet1 and want to add sheets) is use a number for this variable&lt;/P&gt;&lt;P&gt;Like: &lt;SPAN style="font-family: 'Lucida Grande', Arial, Helvetica, sans-serif; background-color: #ffffff;"&gt;vNumbersOfSheets=1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Lucida Grande', Arial, Helvetica, sans-serif; background-color: #ffffff;"&gt;Create an input box voor this (or slide) where you can fill in the numbers of sheets you want to see.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Lucida Grande', Arial, Helvetica, sans-serif; background-color: #ffffff;"&gt;Then use conditional show on the sheets &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Lucida Grande', Arial, Helvetica, sans-serif; background-color: #ffffff;"&gt;=vNumberOfSheets ﻿﻿&amp;gt;=2&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Lucida Grande', Arial, Helvetica, sans-serif; background-color: #ffffff;"&gt;Take look at the atteched file for an example.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Lucida Grande', Arial, Helvetica, sans-serif; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Lucida Grande', Arial, Helvetica, sans-serif; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Lucida Grande', Arial, Helvetica, sans-serif; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Dec 2011 12:14:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Clear-other-fields/m-p/325344#M580554</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-12-27T12:14:07Z</dc:date>
    </item>
    <item>
      <title>Re: Clear other fields</title>
      <link>https://community.qlik.com/t5/QlikView/Clear-other-fields/m-p/325345#M580555</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dennis,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I thought as well about using numeric values instead, but this will only allow you to select consecutive numbers of sheets, but not Sheet1 and Sheet3 only (no Sheet2), or Sheets 1 and 2 but not Sheet3. In this case, only a field (either linked to the data model or as a logic island) can be used. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Otherwise, using a button or an action somewhere seems to me the solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Miguel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Dec 2011 12:29:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Clear-other-fields/m-p/325345#M580555</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2011-12-27T12:29:48Z</dc:date>
    </item>
    <item>
      <title>Re: Clear other fields</title>
      <link>https://community.qlik.com/t5/QlikView/Clear-other-fields/m-p/325346#M580556</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply but my issue is still there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have attached a test file which consists 4 sheets(Main,Sheet1,Sheet2,Sheet3).&lt;/P&gt;&lt;P&gt;I have used conditional show sheet option inorder to display sheets.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Issue is when I'm selecting Sheet1 and clicking on Clear All&amp;nbsp; my&amp;nbsp; Sheet1 vanishes and navigates to Main sheet . But requirement is Clear all should not apply on my field &lt;STRONG&gt;A &lt;/STRONG&gt;and Sheet1 should be still active even after using Clear All. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Attaching a test file here. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Dec 2011 12:45:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Clear-other-fields/m-p/325346#M580556</guid>
      <dc:creator />
      <dc:date>2011-12-27T12:45:33Z</dc:date>
    </item>
    <item>
      <title>Re: Clear other fields</title>
      <link>https://community.qlik.com/t5/QlikView/Clear-other-fields/m-p/325347#M580557</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;EM&gt;Adding one more condition on in sheet1 may help you.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;=&lt;A&gt;='Sheet1' or if(GetSelectedCount(A) &amp;lt; 1 ,1,0)&lt;/A&gt;&lt;/EM&gt;&lt;A&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Have a look at the attached application.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;-Sridhar&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Dec 2011 13:05:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Clear-other-fields/m-p/325347#M580557</guid>
      <dc:creator>sridhar240784</dc:creator>
      <dc:date>2011-12-27T13:05:08Z</dc:date>
    </item>
    <item>
      <title>Clear other fields</title>
      <link>https://community.qlik.com/t5/QlikView/Clear-other-fields/m-p/325348#M580558</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sridhar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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; Thanx for your replay its working for sheet1 only and from sheet2 and sheet3 if i click&amp;nbsp; clear all still its navigating to main sheet.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Dec 2011 13:36:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Clear-other-fields/m-p/325348#M580558</guid>
      <dc:creator />
      <dc:date>2011-12-27T13:36:23Z</dc:date>
    </item>
    <item>
      <title>Re: Clear other fields</title>
      <link>https://community.qlik.com/t5/QlikView/Clear-other-fields/m-p/325349#M580559</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Again,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Although I cannot open files right now, you cannot use "Clear All" to "Clear All &lt;EM&gt;&lt;STRONG&gt;except for&lt;/STRONG&gt;&lt;/EM&gt;": if that's a field it will be cleared. Actually, you don't want "clear &lt;STRONG&gt;&lt;EM&gt;all&lt;/EM&gt;&lt;/STRONG&gt;", you want to clear &lt;STRONG&gt;&lt;EM&gt;some&lt;/EM&gt;&lt;/STRONG&gt; fields, and that's what the actions are for (among many other things).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You may even use &lt;A _jive_internal="true" href="https://community.qlik.com/thread/29358"&gt;bookmarks to keep states between sheets&lt;/A&gt;, but they will require to trigger actions on certain events, either pressing a button, activating/leaving sheets...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Miguel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Dec 2011 13:38:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Clear-other-fields/m-p/325349#M580559</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2011-12-27T13:38:38Z</dc:date>
    </item>
    <item>
      <title>Re: Clear other fields</title>
      <link>https://community.qlik.com/t5/QlikView/Clear-other-fields/m-p/325350#M580560</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-size: 12px; background-color: #ffffff; font-family: Arial;"&gt;I edit Sridhar's solution.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-size: 12px; background-color: #ffffff; font-family: Arial;"&gt;You have to change the condition on all the tabs.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-size: 12px; background-color: #ffffff; font-family: Arial;"&gt;Is this what you are looking for?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-size: 12px; background-color: #ffffff; font-family: Arial;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Dec 2011 14:15:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Clear-other-fields/m-p/325350#M580560</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-12-27T14:15:55Z</dc:date>
    </item>
    <item>
      <title>Clear other fields</title>
      <link>https://community.qlik.com/t5/QlikView/Clear-other-fields/m-p/325351#M580561</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; It Works. Thank you Dennis and Sridhar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Dec 2011 07:49:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Clear-other-fields/m-p/325351#M580561</guid>
      <dc:creator />
      <dc:date>2011-12-28T07:49:00Z</dc:date>
    </item>
  </channel>
</rss>

