<?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: Button for include and exclude in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Button-for-include-and-exclude/m-p/699158#M252430</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;PFA&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 01 Aug 2014 15:51:48 GMT</pubDate>
    <dc:creator>maxgro</dc:creator>
    <dc:date>2014-08-01T15:51:48Z</dc:date>
    <item>
      <title>Button for include and exclude</title>
      <link>https://community.qlik.com/t5/QlikView/Button-for-include-and-exclude/m-p/699153#M252425</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My condition is if Type = 'External Contracts'. I want to have to click just one button for including and excluding external contracts. Is it possible to make one button to toggle between the records? Can you please give me an idea on how to create this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Aug 2014 12:50:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Button-for-include-and-exclude/m-p/699153#M252425</guid>
      <dc:creator />
      <dc:date>2014-08-01T12:50:49Z</dc:date>
    </item>
    <item>
      <title>Re: Button for include and exclude</title>
      <link>https://community.qlik.com/t5/QlikView/Button-for-include-and-exclude/m-p/699154#M252426</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The first step is to set up a variable by going to settings then variable overview.&amp;nbsp; Click add and then give your variable a name that's easy to remember, like vShowExternalContracts . &lt;/P&gt;&lt;P&gt;The 2nd step is to create a text box that says the 2 things you want to toggle.&amp;nbsp; In the white space, right-click then choose text object.&amp;nbsp; Under the general tab, put something similar in the text box to:&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;IF&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(vShowExternalContracts&lt;/SPAN&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;=0,'Show External Contracts', 'Hide External Contracts') &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Step 2A, go to the Actions tab.&amp;nbsp; Actions should be Set Variable.&amp;nbsp; To the right, under Variable, type vShowExternalContracts.&amp;nbsp; Then in the space for value, type &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;STRONG&gt;&lt;EM style=": ; color: #808080; font-size: 8pt;"&gt;vShowExternalContracts&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;=1,0,1) &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Step 3, assuming you have created the table that you want to show already, right-click on it and go to properties and then layout.&amp;nbsp; Halfway down the middle on the right, click the button for show "conditional".&amp;nbsp; Type in vShowExternalContracts .&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;The 0's and 1's are what makes it toggle back and forth.&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;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Aug 2014 13:06:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Button-for-include-and-exclude/m-p/699154#M252426</guid>
      <dc:creator />
      <dc:date>2014-08-01T13:06:12Z</dc:date>
    </item>
    <item>
      <title>Re: Button for include and exclude</title>
      <link>https://community.qlik.com/t5/QlikView/Button-for-include-and-exclude/m-p/699155#M252427</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See the sample i have created it through the variables and buttons.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Aug 2014 13:18:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Button-for-include-and-exclude/m-p/699155#M252427</guid>
      <dc:creator>sujeetsingh</dc:creator>
      <dc:date>2014-08-01T13:18:54Z</dc:date>
    </item>
    <item>
      <title>Re: Button for include and exclude</title>
      <link>https://community.qlik.com/t5/QlikView/Button-for-include-and-exclude/m-p/699156#M252428</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your responses but I am not getting the result that I am looking for.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My field is Type and has Maintenance, Database, General, Development. I am looking for a button to do the following:&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When clicked:&lt;/P&gt;&lt;P&gt;Remove Maintenance and show Database, General, Development&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When clicked again:&lt;/P&gt;&lt;P&gt;Show all: Maintenance, Database, General, Development&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This should apply to all tables and charts in the application.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone help with this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Aug 2014 14:21:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Button-for-include-and-exclude/m-p/699156#M252428</guid>
      <dc:creator />
      <dc:date>2014-08-01T14:21:29Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Button for include and exclude</title>
      <link>https://community.qlik.com/t5/QlikView/Button-for-include-and-exclude/m-p/699157#M252429</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: verdana,geneva;"&gt;Following on from &lt;A href="https://community.qlik.com/qlik-users/142108"&gt;Barbara Boone&lt;/A&gt;'s suggestion you could add to your expressions&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: verdana,geneva;"&gt;if(Type='Maintenance',value*&lt;STRONG style="color: #808080; font-size: 8pt;"&gt;&lt;EM&gt;vShowExternalContracts,value&lt;/EM&gt;&lt;/STRONG&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: verdana,geneva;"&gt;&lt;SPAN style="color: #000000; font-size: 10pt;"&gt;replace&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-size: 10pt;"&gt; value with whatever your data has - Sales or Cost or whatever&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 10pt; font-family: verdana,geneva;"&gt;Or, in your script add &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 10pt; font-family: verdana,geneva;"&gt;If(Type&amp;lt;&amp;gt;'Maintence','I') as InternalContract&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 10pt; font-family: verdana,geneva;"&gt;A listbox for Internal Contract will contain I - Selecting I will give you Internal contracts only and with nothing selected will give you all contracts.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 10pt; font-family: verdana,geneva;"&gt;For the button approach you could use Select In Field&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Aug 2014 14:51:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Button-for-include-and-exclude/m-p/699157#M252429</guid>
      <dc:creator>lawrenceiow</dc:creator>
      <dc:date>2014-08-01T14:51:50Z</dc:date>
    </item>
    <item>
      <title>Re: Button for include and exclude</title>
      <link>https://community.qlik.com/t5/QlikView/Button-for-include-and-exclude/m-p/699158#M252430</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;PFA&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Aug 2014 15:51:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Button-for-include-and-exclude/m-p/699158#M252430</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2014-08-01T15:51:48Z</dc:date>
    </item>
    <item>
      <title>Re: Button for include and exclude</title>
      <link>https://community.qlik.com/t5/QlikView/Button-for-include-and-exclude/m-p/1543421#M439623</link>
      <description>If the values are more then 1000. And when i tap on button i need to exclude some 400 values. How to achieve this. Please help me with the detail steps.&lt;BR /&gt;&lt;BR /&gt;Thanks in advance.</description>
      <pubDate>Wed, 13 Feb 2019 07:24:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Button-for-include-and-exclude/m-p/1543421#M439623</guid>
      <dc:creator>syedmazhar</dc:creator>
      <dc:date>2019-02-13T07:24:00Z</dc:date>
    </item>
  </channel>
</rss>

