<?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 BUTTONS in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/BUTTONS/m-p/182520#M48134</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Select the properties of the button and click on the tab action, then include the action "Selection on the field" or something like this.&lt;/P&gt;&lt;P&gt;If you have any doubt about the action that I mentioned, please ask me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 24 Jan 2011 17:55:31 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-01-24T17:55:31Z</dc:date>
    <item>
      <title>BUTTONS</title>
      <link>https://community.qlik.com/t5/QlikView/BUTTONS/m-p/182518#M48132</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hI FOLKS!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a question on buttons. How can i make a button select &lt;STRONG&gt;ALL&lt;/STRONG&gt; the values in a list? and then have these values in the list displayed on graph?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;S&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Jan 2011 16:44:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/BUTTONS/m-p/182518#M48132</guid>
      <dc:creator />
      <dc:date>2011-01-24T16:44:35Z</dc:date>
    </item>
    <item>
      <title>BUTTONS</title>
      <link>https://community.qlik.com/t5/QlikView/BUTTONS/m-p/182519#M48133</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this vb in a Macro called from the button - expand to as many values as required:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Sub MultiSelect&lt;BR /&gt;rem ** select two non-consecutive field values in field **&lt;BR /&gt;set f = ActiveDocument.Fields("Producing Office")&lt;BR /&gt;set fv = f.GetNoValues 'empty array&lt;BR /&gt;fv.Add&lt;BR /&gt;fv.Add&lt;BR /&gt;fv(0).Text = "Leeds"&lt;BR /&gt;fv(0).IsNumeric = false&lt;BR /&gt;fv(1).Text = "Manchester"&lt;BR /&gt;fv(1).IsNumeric = false&lt;BR /&gt;f.SelectValues fv&lt;BR /&gt;End Sub&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you simply want to select all values from a dimension (listbox) try this in a Sub:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Sub SelectAll&lt;BR /&gt;set lb = ActiveDocument.GetSheetObject("LB01")&lt;BR /&gt;lb.SelectAll&lt;BR /&gt;End Sub&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;Hope that helps,&lt;/P&gt;&lt;P&gt;Matt - Visual Analytics Ltd&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Jan 2011 17:28:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/BUTTONS/m-p/182519#M48133</guid>
      <dc:creator>matt_crowther</dc:creator>
      <dc:date>2011-01-24T17:28:18Z</dc:date>
    </item>
    <item>
      <title>BUTTONS</title>
      <link>https://community.qlik.com/t5/QlikView/BUTTONS/m-p/182520#M48134</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Select the properties of the button and click on the tab action, then include the action "Selection on the field" or something like this.&lt;/P&gt;&lt;P&gt;If you have any doubt about the action that I mentioned, please ask me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Jan 2011 17:55:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/BUTTONS/m-p/182520#M48134</guid>
      <dc:creator />
      <dc:date>2011-01-24T17:55:31Z</dc:date>
    </item>
    <item>
      <title>BUTTONS</title>
      <link>https://community.qlik.com/t5/QlikView/BUTTONS/m-p/182521#M48135</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Or, you can create a variable named 'button', then on the tab action, you can include the action 'defined variable'. Then it will show the name and the value of the variable that the button will set, so you put name:'button' and value:'1', for example.&lt;/P&gt;&lt;P&gt;So, after this you can use on the table:&lt;/P&gt;&lt;P&gt;if(button = '1', 'listcamp')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you didnt got the idea, you can ask me...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any English mistake, it's because I'm from Brazil ok?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Jan 2011 18:05:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/BUTTONS/m-p/182521#M48135</guid>
      <dc:creator />
      <dc:date>2011-01-24T18:05:36Z</dc:date>
    </item>
    <item>
      <title>BUTTONS</title>
      <link>https://community.qlik.com/t5/QlikView/BUTTONS/m-p/182522#M48136</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks!! But what do you mean try this in a sub?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jan 2011 11:16:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/BUTTONS/m-p/182522#M48136</guid>
      <dc:creator />
      <dc:date>2011-01-25T11:16:26Z</dc:date>
    </item>
    <item>
      <title>BUTTONS</title>
      <link>https://community.qlik.com/t5/QlikView/BUTTONS/m-p/182523#M48137</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jeres if u could explain better please? Voçe!!1&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jan 2011 11:17:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/BUTTONS/m-p/182523#M48137</guid>
      <dc:creator />
      <dc:date>2011-01-25T11:17:24Z</dc:date>
    </item>
    <item>
      <title>BUTTONS</title>
      <link>https://community.qlik.com/t5/QlikView/BUTTONS/m-p/182524#M48138</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Matt,&lt;/P&gt;&lt;P&gt;Where would this sub selectall go exactly...i choose this option because i do need the whole list....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;S&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jan 2011 11:39:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/BUTTONS/m-p/182524#M48138</guid>
      <dc:creator />
      <dc:date>2011-01-25T11:39:30Z</dc:date>
    </item>
    <item>
      <title>BUTTONS</title>
      <link>https://community.qlik.com/t5/QlikView/BUTTONS/m-p/182525#M48139</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The thing is, I have a straight table showing countries and overall happiness in that country....but this staright table is under a conditioned expression that only shows me the countries with happiness above 9 (0-10) lets say. Now this information is also presented in a bar graph and the country(ies) I choose appear correspondingly...all i need the button to do is simply with one click, select all the countries and respective happiness levels FROM THAT STRAIGHT TABLE....not all the countries in the database...and show them on the graph. Like a button that lets you visualize all the values at once of a straight table under filtered condition already.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks guys&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jan 2011 12:01:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/BUTTONS/m-p/182525#M48139</guid>
      <dc:creator />
      <dc:date>2011-01-25T12:01:27Z</dc:date>
    </item>
    <item>
      <title>BUTTONS</title>
      <link>https://community.qlik.com/t5/QlikView/BUTTONS/m-p/182526#M48140</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;First --&amp;gt; After you created the list and the button, there is an action called "select possible values", at least this is the name in portuguese.&lt;/P&gt;&lt;P&gt;Second --&amp;gt; Then select the properties of the button, click on the tab action and on the field write the name of the table that you need show all of it.&lt;/P&gt;&lt;P&gt;I will creat some example and put in another post to download.&lt;/P&gt;&lt;P&gt;I'm new on Qlikview, but is helping that we learn.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In time: I only saw you last post now, the idea is easy but it's not so easy to do. I'm trying, if I get the result I'll post here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jan 2011 12:08:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/BUTTONS/m-p/182526#M48140</guid>
      <dc:creator />
      <dc:date>2011-01-25T12:08:39Z</dc:date>
    </item>
    <item>
      <title>BUTTONS</title>
      <link>https://community.qlik.com/t5/QlikView/BUTTONS/m-p/182527#M48141</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I agree perfectly with helping each other out! I just hope there is no limit on forums that you can put otherwise Im dead!! Look i managed to get the list box and the button working...the only thing is i cant seem to do it with a straight table...the thing is i had the straight table with a conditioned selection so any country with happiness below 9 doesnt even show....the list box shows me all the countries above 9 and below nine they are all zero...in the same list box how do i do it so that all ONLY the countries that follow the condition happiness &amp;gt; 9 appear. I can do this is straight table but i cant do it in the list box. and unfortunately i can link the button to the list box but not the straight table.,.....[:'(]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for any help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jan 2011 12:40:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/BUTTONS/m-p/182527#M48141</guid>
      <dc:creator />
      <dc:date>2011-01-25T12:40:50Z</dc:date>
    </item>
    <item>
      <title>BUTTONS</title>
      <link>https://community.qlik.com/t5/QlikView/BUTTONS/m-p/182528#M48142</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I agree perfectly with helping each other out! I just hope there is no limit on forums that you can put otherwise Im dead!! Look i managed to get the list box and the button working...the only thing is i cant seem to do it with a straight table...the thing is i had the straight table with a conditioned selection so any country with happiness below 9 doesnt even show....the list box shows me all the countries above 9 and below nine they are all zero...in the same list box how do i do it so that all ONLY the countries that follow the condition happiness &amp;gt; 9 appear. I can do this is straight table but i cant do it in the list box. and unfortunately i can link the button to the list box but not the straight table.,.....[:'(]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for any help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jan 2011 12:41:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/BUTTONS/m-p/182528#M48142</guid>
      <dc:creator />
      <dc:date>2011-01-25T12:41:03Z</dc:date>
    </item>
    <item>
      <title>BUTTONS</title>
      <link>https://community.qlik.com/t5/QlikView/BUTTONS/m-p/182529#M48143</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The 'Sub' needs to go into the Macro editor.&lt;/P&gt;&lt;P&gt;From the dashboard press 'Ctrl+m' and it should open up. Alternatively go Tool &amp;gt; Edit Module.&lt;/P&gt;&lt;P&gt;This is very similar to the macro editor say Excel or Access.&lt;/P&gt;&lt;P&gt;You then call the sub from an action triggered by the button.&lt;/P&gt;&lt;P&gt;If you need anything else let me know.&lt;/P&gt;&lt;P&gt;All the best,&lt;/P&gt;&lt;P&gt;Matt - Visual Analytics Ltd&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jan 2011 13:17:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/BUTTONS/m-p/182529#M48143</guid>
      <dc:creator>matt_crowther</dc:creator>
      <dc:date>2011-01-25T13:17:34Z</dc:date>
    </item>
  </channel>
</rss>

