<?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 On click Straight table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Button-On-click-Straight-table/m-p/939483#M324129</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Check this links hope it helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/thread/56080"&gt;Hide/show an Object with button set variable&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.youtube.com/watch?v=PSRBtw7SYD8" title="https://www.youtube.com/watch?v=PSRBtw7SYD8"&gt;Show and Hide Multiple Objects - YouTube&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.quickintelligence.co.uk/qlikview-buttons/" title="http://www.quickintelligence.co.uk/qlikview-buttons/"&gt;http://www.quickintelligence.co.uk/qlikview-buttons/&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 05 Nov 2015 04:00:34 GMT</pubDate>
    <dc:creator>jagan</dc:creator>
    <dc:date>2015-11-05T04:00:34Z</dc:date>
    <item>
      <title>Button On click Straight table</title>
      <link>https://community.qlik.com/t5/QlikView/Button-On-click-Straight-table/m-p/939478#M324124</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have multiples straight tables and multiple buttons&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when I click on a Button1 , I should see table box 1&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;when I click on a button2 , I should see table box 2&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;and so on.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Button 1 to 10 should be aligned on the left one below other and all the tables should appear as and when we click on each button&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Any direction or help is appreciated.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Nov 2015 23:46:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Button-On-click-Straight-table/m-p/939478#M324124</guid>
      <dc:creator>rdsuperlike</dc:creator>
      <dc:date>2015-11-04T23:46:35Z</dc:date>
    </item>
    <item>
      <title>Re: Button On click Straight table</title>
      <link>https://community.qlik.com/t5/QlikView/Button-On-click-Straight-table/m-p/939479#M324125</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Look here:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/thread/48958"&gt;Show and Hide Multiple Objects&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Nov 2015 01:08:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Button-On-click-Straight-table/m-p/939479#M324125</guid>
      <dc:creator>robert_mika</dc:creator>
      <dc:date>2015-11-05T01:08:59Z</dc:date>
    </item>
    <item>
      <title>Re: Button On click Straight table</title>
      <link>https://community.qlik.com/t5/QlikView/Button-On-click-Straight-table/m-p/939480#M324126</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Relatively straightforward to do this with a variable. Enter the following into a new script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load * Inline [&lt;/P&gt;&lt;P&gt;ItemKey,ItemSales&lt;/P&gt;&lt;P&gt;A,5&lt;/P&gt;&lt;P&gt;B,10&lt;/P&gt;&lt;P&gt;C,15&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set vCurrentTableSelection = 0;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note the last line which initializes variable vCurrentTableSelection and sets it to zero.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create a table as you normally would. Open up the table properties, go to the layout tab, and in the "show" section select conditional. Enter the following in the empty field to its right:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vCurrentTableSelection =1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As soon as you hit apply the table will disappear. The table will only be shown when the variable is equal to 1, but as of right now it's set to 0 (which is what we set it to in the script).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So now we have to change the value in the variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create a button. For the text enter "Show Table 1." Move to the actions tab, hit add, select external, and then select Set Variable on the right. After you hit OK you'll see boxes on the right for Variable and Value. For variable enter vCurrentTableSelection and for value enter 1. Click OK. Now as soon as you hit this button the value of vCurrentTableSelection will change from 0 to 1, so the condition in the table will now evaluate to true and so it will show up.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You'll need to create 10 buttons and 10 tables. Each of the 10 tables will get a different value in the show conditional section. You can position the tables on top of one another -- it won't matter since only one of the table will show at any given time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also have a default table show by setting the variable in the script to be equal to one of the values you've assigned to your tables. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Nov 2015 01:12:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Button-On-click-Straight-table/m-p/939480#M324126</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-05T01:12:19Z</dc:date>
    </item>
    <item>
      <title>Re: Button On click Straight table</title>
      <link>https://community.qlik.com/t5/QlikView/Button-On-click-Straight-table/m-p/939481#M324127</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check the attachment.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Nov 2015 01:51:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Button-On-click-Straight-table/m-p/939481#M324127</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2015-11-05T01:51:50Z</dc:date>
    </item>
    <item>
      <title>Re: Button On click Straight table</title>
      <link>https://community.qlik.com/t5/QlikView/Button-On-click-Straight-table/m-p/939482#M324128</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;OL&gt;&lt;LI&gt;Press Ctrl + Alt + V&amp;nbsp; (Brings up Variables)&lt;OL&gt;&lt;LI&gt;Add variable&lt;/LI&gt;&lt;LI&gt;Name 'vButtons' (You can name whatever you want, but I will refer to as 'vButtons')&lt;/LI&gt;&lt;LI&gt;Click 'Ok' (make sure you do this, if you press enter it will cancel out)&lt;/LI&gt;&lt;/OL&gt;&lt;/LI&gt;&lt;LI&gt;Create a text object (You can do button, but texts are 100x better IMO)&lt;OL&gt;&lt;LI&gt;Type in 'text' (General Tab) whatever you want your button to display&lt;/LI&gt;&lt;LI&gt;Go to Actions Tab&lt;/LI&gt;&lt;LI&gt;Click 'Add'&lt;/LI&gt;&lt;LI&gt;Select 'External' on left&lt;/LI&gt;&lt;LI&gt;Select 'Set Variable' on the right&lt;/LI&gt;&lt;LI&gt;Press 'Ok'&lt;/LI&gt;&lt;LI&gt;In the 'Variable' box type 'vButtons' &lt;SPAN style="font-size: 13.3333px;"&gt;(Without single quotes)&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;In the 'Value' box below type '1' (Without single quotes)&lt;/LI&gt;&lt;/OL&gt;&lt;/LI&gt;&lt;LI&gt;Repeat step 2 but for sub step #8 increment the numbers by 1 (2,3,4,5,6,7,8,9,10)&lt;/LI&gt;&lt;LI&gt;You should have 10 text objects each changing 'vButtons' value from 1-10.&lt;/LI&gt;&lt;LI&gt;Now go to your first table/chart&lt;OL&gt;&lt;LI&gt;Go to Layout Tab&lt;/LI&gt;&lt;LI&gt;Under 'Show' select 'Conditional' and put 'vButtons = 1' &lt;SPAN style="font-size: 13.3333px;"&gt;(Without single quotes)&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;/LI&gt;&lt;LI&gt;Repeat #5 until all 10 charts have their own 'vButtons = #' (1 - 10)&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are more efficient other ways of accomplishing this task, but this is by far the easiest to comprehend without someone showing you how to do them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also do a lot of cool design work with the same 'vButtons' variable you created.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to learn a more complicated (but efficient method) research into creating inline tables with expressions. (This would have taken me a lot longer to explain... but worthwhile to learn about (This also has a higher chance of being resource heavy, so there are negatives to this secondary approach)).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck!&lt;/P&gt;&lt;P&gt;Yogi Achilleos&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Nov 2015 03:48:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Button-On-click-Straight-table/m-p/939482#M324128</guid>
      <dc:creator>yogiachilleos</dc:creator>
      <dc:date>2015-11-05T03:48:50Z</dc:date>
    </item>
    <item>
      <title>Re: Button On click Straight table</title>
      <link>https://community.qlik.com/t5/QlikView/Button-On-click-Straight-table/m-p/939483#M324129</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Check this links hope it helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/thread/56080"&gt;Hide/show an Object with button set variable&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.youtube.com/watch?v=PSRBtw7SYD8" title="https://www.youtube.com/watch?v=PSRBtw7SYD8"&gt;Show and Hide Multiple Objects - YouTube&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.quickintelligence.co.uk/qlikview-buttons/" title="http://www.quickintelligence.co.uk/qlikview-buttons/"&gt;http://www.quickintelligence.co.uk/qlikview-buttons/&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Nov 2015 04:00:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Button-On-click-Straight-table/m-p/939483#M324129</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2015-11-05T04:00:34Z</dc:date>
    </item>
  </channel>
</rss>

