<?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 Automating the QVW file in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Automating-the-QVW-file/m-p/204374#M61313</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Go to Edit Module(Or CTRL+M)...paste the script and change the qvw name as yours....on left part of edit module screen, select 'allow system access' on 2 drop downs and click 'test' to run the report. My code will copy all the chart objects(i.e. CH01,02..etc) on excel. Try to make sure that object names are in sequential order;i.e. CH01, CH02..etc.&lt;/P&gt;&lt;P&gt;Sorry I can't share qvw file as application is confidential.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 01 Oct 2009 19:21:00 GMT</pubDate>
    <dc:creator />
    <dc:date>2009-10-01T19:21:00Z</dc:date>
    <item>
      <title>Automating the QVW file</title>
      <link>https://community.qlik.com/t5/QlikView/Automating-the-QVW-file/m-p/204371#M61310</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am looking to export current graphs and Charts made on mine qlikview document to a particular file type CSV or excel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I do it&lt;/P&gt;&lt;P&gt;I tried some macro code from the this forum but its not working .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its giving error while&lt;/P&gt;&lt;P&gt;Set oDQVInformeExcel = CreateObject("QlikTech.QlikView")&lt;/P&gt;&lt;P&gt;Please help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another problem I am facing is that I want to show some custom msg in terms of pop ups when a user clicks them. Clicks are made on some region of the graphs..&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Ideas are invited.&lt;/P&gt;&lt;P&gt;Thanks ,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Atul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Oct 2009 17:18:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Automating-the-QVW-file/m-p/204371#M61310</guid>
      <dc:creator />
      <dc:date>2009-10-01T17:18:38Z</dc:date>
    </item>
    <item>
      <title>Automating the QVW file</title>
      <link>https://community.qlik.com/t5/QlikView/Automating-the-QVW-file/m-p/204372#M61311</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use below code..just change the name of your QVW file(PG EIR in my example).&lt;/P&gt;&lt;P&gt;'Export objs to excelTest&lt;BR /&gt;sub ExportBitmapExcel2&lt;BR /&gt;dim str1&lt;BR /&gt;ActiveDocument.Sheets("PG EIR").ActivateAll&lt;BR /&gt;Set objExcel = CreateObject("Excel.Application")&lt;BR /&gt;objExcel.Visible = True&lt;BR /&gt;set s=ActiveDocument.Sheets("PG EIR")&lt;BR /&gt;objExcel.Workbooks.Add&lt;BR /&gt;for i=0 to s.NoOfSheetObjects-1&lt;BR /&gt; s.SheetObjects(i).Activate&lt;BR /&gt; next&lt;BR /&gt;for i=1 to s.NoOfSheetObjects-1&lt;BR /&gt;str1 = "CH0" &amp;amp; i //Change object type as MB0 for multibox, etc&lt;BR /&gt;ActiveDocument.GetSheetObject(str1).CopyBitmapToClipboard&lt;BR /&gt;objExcel.ActiveSheet.Paste&lt;BR /&gt;next&lt;BR /&gt;if err.number &amp;gt; 0 then&lt;BR /&gt; msgbox "Error occured "&lt;BR /&gt;end if&lt;BR /&gt;end sub&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Oct 2009 17:47:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Automating-the-QVW-file/m-p/204372#M61311</guid>
      <dc:creator />
      <dc:date>2009-10-01T17:47:40Z</dc:date>
    </item>
    <item>
      <title>Automating the QVW file</title>
      <link>https://community.qlik.com/t5/QlikView/Automating-the-QVW-file/m-p/204373#M61312</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Sunil for your reply..&lt;/P&gt;&lt;P&gt;can You please send a sample qvw and excel file to atul[dot]iiitm[at]gmail.com and how it works..&lt;/P&gt;&lt;P&gt;I tried your code. but could nt get much help ..&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Thanks ,&lt;BR /&gt;Atul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Oct 2009 18:57:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Automating-the-QVW-file/m-p/204373#M61312</guid>
      <dc:creator />
      <dc:date>2009-10-01T18:57:11Z</dc:date>
    </item>
    <item>
      <title>Automating the QVW file</title>
      <link>https://community.qlik.com/t5/QlikView/Automating-the-QVW-file/m-p/204374#M61313</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Go to Edit Module(Or CTRL+M)...paste the script and change the qvw name as yours....on left part of edit module screen, select 'allow system access' on 2 drop downs and click 'test' to run the report. My code will copy all the chart objects(i.e. CH01,02..etc) on excel. Try to make sure that object names are in sequential order;i.e. CH01, CH02..etc.&lt;/P&gt;&lt;P&gt;Sorry I can't share qvw file as application is confidential.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Oct 2009 19:21:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Automating-the-QVW-file/m-p/204374#M61313</guid>
      <dc:creator />
      <dc:date>2009-10-01T19:21:00Z</dc:date>
    </item>
    <item>
      <title>Automating the QVW file</title>
      <link>https://community.qlik.com/t5/QlikView/Automating-the-QVW-file/m-p/204375#M61314</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunil I tried your code but its stopping at ActiveDocument.Sheets("myfile").ActivateAll&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I am just asking to send a sample file with dummy chart .&lt;/P&gt;&lt;P&gt;Thanks ,&lt;/P&gt;&lt;P&gt;Atul&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Oct 2009 19:34:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Automating-the-QVW-file/m-p/204375#M61314</guid>
      <dc:creator />
      <dc:date>2009-10-01T19:34:56Z</dc:date>
    </item>
  </channel>
</rss>

