<?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: detaching automatically... in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/detaching-automatically/m-p/1597262#M444022</link>
    <description>&lt;P&gt;Useful with tables (Pivot or Straight) with high number of lines:&lt;/P&gt;&lt;P&gt;sub TBL_Atach_Detach&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; set chart = ActiveDocument.GetSheetObject("CH01")&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; set p = chart.GetProperties&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; p.Detached = not p.Detached&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;chart.SetProperties p&lt;/P&gt;&lt;P&gt;end sub&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Juan&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 28 Jun 2019 14:16:32 GMT</pubDate>
    <dc:creator>JCMMSANTANDER</dc:creator>
    <dc:date>2019-06-28T14:16:32Z</dc:date>
    <item>
      <title>detaching automatically...</title>
      <link>https://community.qlik.com/t5/QlikView/detaching-automatically/m-p/232975#M84526</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have a dashboard with Multi box with the name of A, list box with the name of B, 2 graph charts. C &amp;amp; D.&lt;/P&gt;&lt;P&gt;If I change any value in the A, the rest of the list box (B), C &amp;amp; D are changing automatically.&lt;/P&gt;&lt;P&gt;But my requirement is if I change anything in the A only C &amp;amp; D has to change not B.&lt;/P&gt;&lt;P&gt;Suppose if I change list of values in the B only C has to change rest A &amp;amp; D not supppose to change.&lt;/P&gt;&lt;P&gt;Is this kind option is there in 8.2 version??&lt;/P&gt;&lt;P&gt;And I don't want do detach and attach.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 09 Oct 2010 12:36:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/detaching-automatically/m-p/232975#M84526</guid>
      <dc:creator />
      <dc:date>2010-10-09T12:36:12Z</dc:date>
    </item>
    <item>
      <title>detaching automatically...</title>
      <link>https://community.qlik.com/t5/QlikView/detaching-automatically/m-p/232976#M84527</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In 8.2, I think the only options were to create table islands and sum if statements to do such a configuration.&lt;/P&gt;&lt;P&gt;Based on the post title, you could also detach everything and only attach certain objects according to the selection in each field that triggers different macro with the functions:&lt;/P&gt;&lt;P&gt;ActiveDocument.GetSheetObject("CH01").Detach&lt;BR /&gt;ActiveDocument.GetSheetObject("CH01").Attach&lt;/P&gt;&lt;P&gt;I assume these functions exist in the 8.2 version.&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 09 Oct 2010 16:46:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/detaching-automatically/m-p/232976#M84527</guid>
      <dc:creator>pover</dc:creator>
      <dc:date>2010-10-09T16:46:31Z</dc:date>
    </item>
    <item>
      <title>detaching automatically...</title>
      <link>https://community.qlik.com/t5/QlikView/detaching-automatically/m-p/232977#M84528</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Karl,&lt;/P&gt;&lt;P&gt;Could you pls let me know how to use these functions in the dashboards.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Oct 2010 08:10:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/detaching-automatically/m-p/232977#M84528</guid>
      <dc:creator />
      <dc:date>2010-10-22T08:10:12Z</dc:date>
    </item>
    <item>
      <title>detaching automatically...</title>
      <link>https://community.qlik.com/t5/QlikView/detaching-automatically/m-p/232978#M84529</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See the attached example. The marco is in "Tools-&amp;gt;Edit Modulo..." The funny thing is that the functions I gave you above didn't work in Qlikview 10 so I changed the marco to the following which worked just fine. Regards.&lt;/P&gt;&lt;P&gt;sub detach&lt;/P&gt;&lt;P&gt;set chart = ActiveDocument.GetSheetObject("CH01")&lt;BR /&gt;set p = chart.GetProperties&lt;BR /&gt;p.Detached = true&lt;BR /&gt;chart.SetProperties p&lt;/P&gt;&lt;P&gt;end sub&lt;/P&gt;&lt;P&gt;sub attach&lt;/P&gt;&lt;P&gt;set chart = ActiveDocument.GetSheetObject("CH01")&lt;BR /&gt;set p = chart.GetProperties&lt;BR /&gt;p.Detached = false&lt;BR /&gt;chart.SetProperties p&lt;/P&gt;&lt;P&gt;end sub&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Oct 2010 21:38:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/detaching-automatically/m-p/232978#M84529</guid>
      <dc:creator>pover</dc:creator>
      <dc:date>2010-10-22T21:38:12Z</dc:date>
    </item>
    <item>
      <title>Re: detaching automatically...</title>
      <link>https://community.qlik.com/t5/QlikView/detaching-automatically/m-p/1597262#M444022</link>
      <description>&lt;P&gt;Useful with tables (Pivot or Straight) with high number of lines:&lt;/P&gt;&lt;P&gt;sub TBL_Atach_Detach&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; set chart = ActiveDocument.GetSheetObject("CH01")&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; set p = chart.GetProperties&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; p.Detached = not p.Detached&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;chart.SetProperties p&lt;/P&gt;&lt;P&gt;end sub&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Juan&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jun 2019 14:16:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/detaching-automatically/m-p/1597262#M444022</guid>
      <dc:creator>JCMMSANTANDER</dc:creator>
      <dc:date>2019-06-28T14:16:32Z</dc:date>
    </item>
  </channel>
</rss>

