<?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 Reports: Settings changed by macro in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Reports-Settings-changed-by-macro/m-p/164102#M36921</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi to all,&lt;/P&gt;&lt;P&gt;another question for today. Is there a possibility to change the settings from a report by macro (vbScribt) ?&lt;BR /&gt;As my function 'PrintReport' didn't take care about the before set bookmark (refer to my other request from today) , i was thinking about that, if I can set the bookmark to the Report with the help of vbScribt.&lt;/P&gt;&lt;P&gt;As i can read the (some) settings (e.g. ActiveDocument.GetReport("RP01").InitialSelection.BookmarkId), perhaps there's a way to set these option.&lt;/P&gt;&lt;P&gt;any ideas?&lt;/P&gt;&lt;P&gt;thanks &amp;amp; best regards&lt;/P&gt;&lt;P&gt;Stefan Bockelmann&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 11 Jan 2011 16:22:01 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-01-11T16:22:01Z</dc:date>
    <item>
      <title>Reports: Settings changed by macro</title>
      <link>https://community.qlik.com/t5/QlikView/Reports-Settings-changed-by-macro/m-p/164102#M36921</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi to all,&lt;/P&gt;&lt;P&gt;another question for today. Is there a possibility to change the settings from a report by macro (vbScribt) ?&lt;BR /&gt;As my function 'PrintReport' didn't take care about the before set bookmark (refer to my other request from today) , i was thinking about that, if I can set the bookmark to the Report with the help of vbScribt.&lt;/P&gt;&lt;P&gt;As i can read the (some) settings (e.g. ActiveDocument.GetReport("RP01").InitialSelection.BookmarkId), perhaps there's a way to set these option.&lt;/P&gt;&lt;P&gt;any ideas?&lt;/P&gt;&lt;P&gt;thanks &amp;amp; best regards&lt;/P&gt;&lt;P&gt;Stefan Bockelmann&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Jan 2011 16:22:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reports-Settings-changed-by-macro/m-p/164102#M36921</guid>
      <dc:creator />
      <dc:date>2011-01-11T16:22:01Z</dc:date>
    </item>
    <item>
      <title>AW:Reports: Settings changed by macro</title>
      <link>https://community.qlik.com/t5/QlikView/Reports-Settings-changed-by-macro/m-p/164103#M36922</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Since I changed manually the option 'Initial Selection' from 'Clear All' to 'Current' in the Selections-Tab of the Report Settings,&lt;BR /&gt;the function 'PrintReport' works fine.&lt;/P&gt;&lt;P&gt;&lt;A href="http://community.qlik.com/cfs-file.ashx/__key/CommunityServer.Discussions.Components.Files/11/1348.ReportSelection.jpg"&gt;&lt;IMG alt="" border="0" src="http://community.qlik.com/resized-image.ashx/__size/550x0/__key/CommunityServer.Discussions.Components.Files/11/1348.ReportSelection.jpg" /&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nevertheless it would be of interest, if this option can be set by vbScribt (macro).&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;P&gt;Stefan Bockelmann&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jan 2011 10:36:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reports-Settings-changed-by-macro/m-p/164103#M36922</guid>
      <dc:creator />
      <dc:date>2011-01-12T10:36:37Z</dc:date>
    </item>
    <item>
      <title>AW:Reports: Settings changed by macro</title>
      <link>https://community.qlik.com/t5/QlikView/Reports-Settings-changed-by-macro/m-p/164104#M36923</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Found this in the API guide which you might want to follow up:&lt;/P&gt;&lt;P&gt;set rep = ActiveDocument.GetReport("RP01")&lt;BR /&gt;set is = rep.InitialSelection&lt;BR /&gt;isbm = is.BookmarkId&lt;BR /&gt;ism = is.Mode&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Gordon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jan 2011 11:07:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reports-Settings-changed-by-macro/m-p/164104#M36923</guid>
      <dc:creator />
      <dc:date>2011-01-12T11:07:13Z</dc:date>
    </item>
    <item>
      <title>AW:Re: AW:Reports: Settings changed by macro</title>
      <link>https://community.qlik.com/t5/QlikView/Reports-Settings-changed-by-macro/m-p/164105#M36924</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gordon, yes, I found this also.&lt;/P&gt;&lt;P&gt;I was "playing" a litle bit with this, and was able to get some report settings, but I didn't make it to overwrite the settings.&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; best regards&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jan 2011 11:34:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reports-Settings-changed-by-macro/m-p/164105#M36924</guid>
      <dc:creator />
      <dc:date>2011-01-12T11:34:43Z</dc:date>
    </item>
  </channel>
</rss>

