<?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 Get an object from other Qlik document in VB module in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Get-an-object-from-other-Qlik-document-in-VB-module/m-p/634105#M232588</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to get an object from another document. Instead of ActiveDocument.GetSheetObject("CH01"), &lt;BR /&gt;OtherDocument.GetSheetObject.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anybody know the syntax?&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, 30 May 2014 12:00:26 GMT</pubDate>
    <dc:creator>christian77</dc:creator>
    <dc:date>2014-05-30T12:00:26Z</dc:date>
    <item>
      <title>Get an object from other Qlik document in VB module</title>
      <link>https://community.qlik.com/t5/QlikView/Get-an-object-from-other-Qlik-document-in-VB-module/m-p/634105#M232588</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to get an object from another document. Instead of ActiveDocument.GetSheetObject("CH01"), &lt;BR /&gt;OtherDocument.GetSheetObject.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anybody know the syntax?&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, 30 May 2014 12:00:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-an-object-from-other-Qlik-document-in-VB-module/m-p/634105#M232588</guid>
      <dc:creator>christian77</dc:creator>
      <dc:date>2014-05-30T12:00:26Z</dc:date>
    </item>
    <item>
      <title>Re: Get an object from other Qlik document in VB module</title>
      <link>https://community.qlik.com/t5/QlikView/Get-an-object-from-other-Qlik-document-in-VB-module/m-p/634106#M232589</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;Did you solve it&lt;/SPAN&gt;??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Apr 2016 11:48:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-an-object-from-other-Qlik-document-in-VB-module/m-p/634106#M232589</guid>
      <dc:creator>imrencimen</dc:creator>
      <dc:date>2016-04-04T11:48:05Z</dc:date>
    </item>
    <item>
      <title>Re: Get an object from other Qlik document in VB module</title>
      <link>https://community.qlik.com/t5/QlikView/Get-an-object-from-other-Qlik-document-in-VB-module/m-p/634107#M232590</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to open and to instantiate the new app and then you could access the objects. Here a small example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set newApp = ActiveDocument.GetApplication&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;set newdoc = newApp.OpenDoc (path &amp;amp; QVW_file,"","")&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;and then:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;newdoc.Fields("Month").Select month(now() - 1)&lt;/P&gt;&lt;P&gt;set ex = newdoc.GetSheetObject("CH10029")&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Apr 2016 13:47:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-an-object-from-other-Qlik-document-in-VB-module/m-p/634107#M232590</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2016-04-04T13:47:38Z</dc:date>
    </item>
    <item>
      <title>Re: Get an object from other Qlik document in VB module</title>
      <link>https://community.qlik.com/t5/QlikView/Get-an-object-from-other-Qlik-document-in-VB-module/m-p/634108#M232591</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Imren,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is your exact requirement.? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Apr 2016 13:52:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-an-object-from-other-Qlik-document-in-VB-module/m-p/634108#M232591</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2016-04-04T13:52:53Z</dc:date>
    </item>
    <item>
      <title>Re: Get an object from other Qlik document in VB module</title>
      <link>https://community.qlik.com/t5/QlikView/Get-an-object-from-other-Qlik-document-in-VB-module/m-p/634109#M232592</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ı want to prepeare a dashboard pdf which has charts from different &lt;SPAN style="font-size: 13.3333px;"&gt;qvw &lt;SPAN style="font-size: 13.3333px;"&gt;objects.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;dail_ product_report&lt;/P&gt;&lt;P&gt;sales_report&lt;/P&gt;&lt;P&gt;notdelivered_products etc..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;all raports have a dashboard. I want to bring &lt;SPAN style="font-size: 13.3333px;"&gt;selected charts &lt;SPAN style="font-size: 13.3333px;"&gt;together (&lt;/SPAN&gt;which are from other tree QVW) &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;--(without data-only &lt;SPAN lang="en"&gt;visually&lt;/SPAN&gt;)&amp;nbsp; and export to pdf od ppt then send to email.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I do this with macro?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Apr 2016 14:18:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-an-object-from-other-Qlik-document-in-VB-module/m-p/634109#M232592</guid>
      <dc:creator>imrencimen</dc:creator>
      <dc:date>2016-04-04T14:18:42Z</dc:date>
    </item>
  </channel>
</rss>

