<?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: Help - Scrot to export a Graphic (Pivot Table) in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Help-Script-to-export-a-Graphic-Pivot-Table-automatically/m-p/460598#M699702</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Look at User Poperties, Security menu, one of that options have to allow access to filesystem, also look at your user provileges of the folder you want to use to export&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 26 Dec 2012 18:04:06 GMT</pubDate>
    <dc:creator>chematos</dc:creator>
    <dc:date>2012-12-26T18:04:06Z</dc:date>
    <item>
      <title>Help - Script to export a Graphic (Pivot Table) automatically</title>
      <link>https://community.qlik.com/t5/QlikView/Help-Script-to-export-a-Graphic-Pivot-Table-automatically/m-p/460589#M699691</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any script to export an specific Graphic (Pivot Table) in a specified workspace?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;Dom&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Dec 2012 10:21:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-Script-to-export-a-Graphic-Pivot-Table-automatically/m-p/460589#M699691</guid>
      <dc:creator />
      <dc:date>2012-12-21T10:21:25Z</dc:date>
    </item>
    <item>
      <title>Re: Help - Scrot to export a Graphic (Pivot Table)</title>
      <link>https://community.qlik.com/t5/QlikView/Help-Script-to-export-a-Graphic-Pivot-Table-automatically/m-p/460590#M699693</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you mean &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how to export object (for example pivot table) to Excel via Macro and save file to specific directory?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Dec 2012 12:12:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-Script-to-export-a-Graphic-Pivot-Table-automatically/m-p/460590#M699693</guid>
      <dc:creator />
      <dc:date>2012-12-21T12:12:26Z</dc:date>
    </item>
    <item>
      <title>Re: Help - Scrot to export a Graphic (Pivot Table)</title>
      <link>https://community.qlik.com/t5/QlikView/Help-Script-to-export-a-Graphic-Pivot-Table-automatically/m-p/460591#M699695</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The dashboard I'm bulding will get data from one sorce, traeat in in form of a&amp;nbsp; pivot table, export it to a new table, then load this new table and use it with other sources... it's kinda messy, Iknow.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There's a way to do this?&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, 21 Dec 2012 12:31:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-Script-to-export-a-Graphic-Pivot-Table-automatically/m-p/460591#M699695</guid>
      <dc:creator />
      <dc:date>2012-12-21T12:31:42Z</dc:date>
    </item>
    <item>
      <title>Re: Help - Scrot to export a Graphic (Pivot Table)</title>
      <link>https://community.qlik.com/t5/QlikView/Help-Script-to-export-a-Graphic-Pivot-Table-automatically/m-p/460592#M699696</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="background-color: #f5f5f5; color: #737373; font-family: Arial;"&gt;Try something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #f5f5f5; color: #737373; font-family: Arial;"&gt;&lt;EM&gt;sub ExportExcel&lt;/EM&gt;&lt;/P&gt;&lt;P style="background-color: #f5f5f5; color: #737373; font-family: Arial;"&gt;&lt;EM&gt;Set objExcel = CreateObject("Excel.Application")&lt;BR /&gt;objExcel.Visible = True&lt;BR /&gt;objExcel.Workbooks.Add&lt;/EM&gt;&lt;/P&gt;&lt;P style="background-color: #f5f5f5; color: #737373; font-family: Arial;"&gt;&lt;EM&gt;ActiveDocument.GetSheetObject("CH01").CopyTable True&lt;/EM&gt;&lt;/P&gt;&lt;P style="background-color: #f5f5f5; color: #737373; font-family: Arial;"&gt;&lt;EM&gt;objExcel.ActiveSheet.Paste&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #f5f5f5; color: #737373; font-family: Arial;"&gt;&lt;EM&gt;objExcel.Export 'C:/path'&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P style="background-color: #f5f5f5; color: #737373; font-family: Arial;"&gt;&lt;EM&gt;end sub&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Dec 2012 17:13:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-Script-to-export-a-Graphic-Pivot-Table-automatically/m-p/460592#M699696</guid>
      <dc:creator>chematos</dc:creator>
      <dc:date>2012-12-21T17:13:38Z</dc:date>
    </item>
    <item>
      <title>Re: Help - Scrot to export a Graphic (Pivot Table)</title>
      <link>https://community.qlik.com/t5/QlikView/Help-Script-to-export-a-Graphic-Pivot-Table-automatically/m-p/460593#M699697</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I can't make it work... I changed the path* inserted the code on "Main" script and put a CALL function right after it... nothing happens.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tought it was b/c the script wasn't understanding the end of the function, so I put a ; befoe end sub. Nothing happens.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea what I'm might be doing wrong?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Path: &lt;SPAN style="font-size: 8pt;"&gt;C:\Users\re09083g\Desktop\EOG Qlikview_12-12\test.xls&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Dec 2012 14:20:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-Script-to-export-a-Graphic-Pivot-Table-automatically/m-p/460593#M699697</guid>
      <dc:creator />
      <dc:date>2012-12-26T14:20:26Z</dc:date>
    </item>
    <item>
      <title>Re: Help - Scrot to export a Graphic (Pivot Table)</title>
      <link>https://community.qlik.com/t5/QlikView/Help-Script-to-export-a-Graphic-Pivot-Table-automatically/m-p/460594#M699698</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;you have to do the macro in the Module Editor and change the path and the Obejct ID CH01 by your object ID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this and let me know,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Dec 2012 14:39:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-Script-to-export-a-Graphic-Pivot-Table-automatically/m-p/460594#M699698</guid>
      <dc:creator>chematos</dc:creator>
      <dc:date>2012-12-26T14:39:42Z</dc:date>
    </item>
    <item>
      <title>Re: Help - Scrot to export a Graphic (Pivot Table)</title>
      <link>https://community.qlik.com/t5/QlikView/Help-Script-to-export-a-Graphic-Pivot-Table-automatically/m-p/460595#M699699</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;Ops... now it makes a lot more sense, but I get the error below when I hit the "Test" button:&lt;/DIV&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;DIV&gt;"O objeto não dá suporte para a propriedade ou método: 'ActiveDocument.GetSheetObject(...).CopyTable' " (something like: Object dosn't support proprety or method "ActiveDocument.GetSheetObject(...) Copy Table)&lt;/DIV&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;I'm using QV11, Excel 2010. Already put "Requested Module Security" and "Current Local Security" to allow System Acccess.&lt;/DIV&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;DIV&gt;Any ideas? &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/sad.png" /&gt; &lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Dec 2012 17:30:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-Script-to-export-a-Graphic-Pivot-Table-automatically/m-p/460595#M699699</guid>
      <dc:creator />
      <dc:date>2012-12-26T17:30:38Z</dc:date>
    </item>
    <item>
      <title>Re: Help - Scrot to export a Graphic (Pivot Table)</title>
      <link>https://community.qlik.com/t5/QlikView/Help-Script-to-export-a-Graphic-Pivot-Table-automatically/m-p/460596#M699700</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, is CopyTableToClipboard True&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to Allow Local Security to run macros&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Dec 2012 17:40:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-Script-to-export-a-Graphic-Pivot-Table-automatically/m-p/460596#M699700</guid>
      <dc:creator>chematos</dc:creator>
      <dc:date>2012-12-26T17:40:23Z</dc:date>
    </item>
    <item>
      <title>Re: Help - Scrot to export a Graphic (Pivot Table)</title>
      <link>https://community.qlik.com/t5/QlikView/Help-Script-to-export-a-Graphic-Pivot-Table-automatically/m-p/460597#M699701</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No support to .Export... also tried SaveAs with he same effect; even tought Save works but it its kind'a pointless to macro. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Dec 2012 17:59:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-Script-to-export-a-Graphic-Pivot-Table-automatically/m-p/460597#M699701</guid>
      <dc:creator />
      <dc:date>2012-12-26T17:59:53Z</dc:date>
    </item>
    <item>
      <title>Re: Help - Scrot to export a Graphic (Pivot Table)</title>
      <link>https://community.qlik.com/t5/QlikView/Help-Script-to-export-a-Graphic-Pivot-Table-automatically/m-p/460598#M699702</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Look at User Poperties, Security menu, one of that options have to allow access to filesystem, also look at your user provileges of the folder you want to use to export&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Dec 2012 18:04:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-Script-to-export-a-Graphic-Pivot-Table-automatically/m-p/460598#M699702</guid>
      <dc:creator>chematos</dc:creator>
      <dc:date>2012-12-26T18:04:06Z</dc:date>
    </item>
    <item>
      <title>Re: Help - Scrot to export a Graphic (Pivot Table)</title>
      <link>https://community.qlik.com/t5/QlikView/Help-Script-to-export-a-Graphic-Pivot-Table-automatically/m-p/460599#M699703</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Don't ask me why, but when I use a Workbook instead as a object instead of Excel, it works:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;---&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;sub ExportAnual&lt;BR /&gt;&lt;BR /&gt;Set objExcel = CreateObject("Excel.Application")&lt;BR /&gt;objExcel.Visible = True&lt;BR /&gt;&lt;STRONG&gt;Set WB = objExcel.Workbooks.Add&lt;/STRONG&gt;&lt;BR /&gt;ActiveDocument.GetSheetObject("CH01").CopyTableToClipboard True&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WB.ActiveSheet.Paste &lt;BR /&gt;WB.&lt;STRONG&gt;SaveAs &lt;/STRONG&gt;"C:\path\Ranking\test3.xls" &lt;BR /&gt;WB.Close&lt;BR /&gt;&lt;BR /&gt;End Sub &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;---&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just need to know how overwrite in Qlikview's VB Script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Dec 2012 18:31:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-Script-to-export-a-Graphic-Pivot-Table-automatically/m-p/460599#M699703</guid>
      <dc:creator />
      <dc:date>2012-12-26T18:31:09Z</dc:date>
    </item>
    <item>
      <title>Re: Help - Scrot to export a Graphic (Pivot Table)</title>
      <link>https://community.qlik.com/t5/QlikView/Help-Script-to-export-a-Graphic-Pivot-Table-automatically/m-p/460600#M699704</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="background-color: #f5f5f5; color: #737373; font-family: Arial;"&gt;This is not working to export??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #f5f5f5; color: #737373; font-family: Arial;"&gt;&lt;EM&gt;objExcel.ActiveSheet.Paste&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #f5f5f5; color: #737373; font-family: Arial;"&gt;&lt;EM&gt;objExcel.Export &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I use that to overwrite the excel everytime, may be exists a function to clear ActiveSheet before copy the table... I really don´t know. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You're welcome, I'm glad you get a solution but I also don't know why is working like that... &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/laugh.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Dec 2012 18:46:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-Script-to-export-a-Graphic-Pivot-Table-automatically/m-p/460600#M699704</guid>
      <dc:creator>chematos</dc:creator>
      <dc:date>2012-12-26T18:46:01Z</dc:date>
    </item>
  </channel>
</rss>

