<?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: how to link calender object with a button?? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/how-to-link-calender-object-with-a-button/m-p/701218#M253117</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;PFA.&lt;/P&gt;&lt;P&gt;Hope it may help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 Jul 2014 05:12:15 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2014-07-03T05:12:15Z</dc:date>
    <item>
      <title>how to link calender object with a button??</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-link-calender-object-with-a-button/m-p/701217#M253116</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;Can anyone tell me how do I connect a calender with a condition/trigger??&lt;/P&gt;&lt;P&gt;like I have attached a file where I have a button which has yearly and monthly both in it.but I have 2 calender objects,I want calender 'a' to be shown when year is clicked and hide 'b' and on re-click I want calender 'b 'to be displayed and hide 'a'.I tried using the object trigger ,But just dint work,and dint find how to connect this.Please can someone help .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Jul 2014 03:30:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-link-calender-object-with-a-button/m-p/701217#M253116</guid>
      <dc:creator />
      <dc:date>2014-07-03T03:30:17Z</dc:date>
    </item>
    <item>
      <title>Re: how to link calender object with a button??</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-link-calender-object-with-a-button/m-p/701218#M253117</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;PFA.&lt;/P&gt;&lt;P&gt;Hope it may help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Jul 2014 05:12:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-link-calender-object-with-a-button/m-p/701218#M253117</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-07-03T05:12:15Z</dc:date>
    </item>
    <item>
      <title>Re: how to link calender object with a button??</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-link-calender-object-with-a-button/m-p/701219#M253118</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;you can do this using conditional show option in layout tab ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;first create two variable vA and vB for each calendar object set vA=1 and vB=0,&lt;/P&gt;&lt;P&gt;Add 2 set variable action in button for each of the variable and in value give this expression&lt;/P&gt;&lt;P&gt;if(vB=1,1,0) for vA&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt; if(vA=1,1,0) for vB&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have also attached the QVW.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vivek &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Jul 2014 05:20:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-link-calender-object-with-a-button/m-p/701219#M253118</guid>
      <dc:creator />
      <dc:date>2014-07-03T05:20:32Z</dc:date>
    </item>
    <item>
      <title>Re: how to link calender object with a button??</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-link-calender-object-with-a-button/m-p/701220#M253119</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can Achieve it through a button and a variable.&lt;/P&gt;&lt;P&gt;Create button and a variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now set an action on Button :&lt;/P&gt;&lt;P&gt;Action--&amp;gt;Set Variable&lt;/P&gt;&lt;P&gt;Variable : vShow&lt;/P&gt;&lt;P&gt;Value&amp;nbsp; :&amp;nbsp; =if($(vShow)=1,0,1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now on Calender A ;&lt;/P&gt;&lt;P&gt;Action--&amp;gt;Set Variable&lt;/P&gt;&lt;P&gt;Variable : vShow&lt;/P&gt;&lt;P&gt;Value&amp;nbsp; :&amp;nbsp; =if($(vShow)=1,1,0)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On Calender B :&lt;/P&gt;&lt;P&gt;Action--&amp;gt;Set Variable&lt;/P&gt;&lt;P&gt;Variable : vShow&lt;/P&gt;&lt;P&gt;Value&amp;nbsp; :&amp;nbsp; =if($(vShow)=1,0,1)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Jul 2014 05:25:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-link-calender-object-with-a-button/m-p/701220#M253119</guid>
      <dc:creator />
      <dc:date>2014-07-03T05:25:47Z</dc:date>
    </item>
    <item>
      <title>Re: how to link calender object with a button??</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-link-calender-object-with-a-button/m-p/701221#M253120</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanku all for the valuable response &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Jul 2014 06:39:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-link-calender-object-with-a-button/m-p/701221#M253120</guid>
      <dc:creator />
      <dc:date>2014-07-03T06:39:44Z</dc:date>
    </item>
  </channel>
</rss>

