<?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: macro for copy and paste in excel in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/macro-for-copy-and-paste-in-excel/m-p/398688#M566812</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 enabled this two options,but still same error. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 03 Dec 2012 11:22:15 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-12-03T11:22:15Z</dc:date>
    <item>
      <title>macro for copy and paste in excel</title>
      <link>https://community.qlik.com/t5/QlikView/macro-for-copy-and-paste-in-excel/m-p/398683#M566807</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 have pivot table in my project, when i click on the excel it exporting in excel it is working fine. But i want to copy the full table and paste it into new excel,this i will do by manually.Instead of doing this manually is there any possible to write a macro and creating one button,when i click on this button the report should be copy and paste in new excel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can anyone know the macro for this please share....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;baru &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Dec 2012 09:48:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/macro-for-copy-and-paste-in-excel/m-p/398683#M566807</guid>
      <dc:creator />
      <dc:date>2012-12-03T09:48:47Z</dc:date>
    </item>
    <item>
      <title>Re: macro for copy and paste in excel</title>
      <link>https://community.qlik.com/t5/QlikView/macro-for-copy-and-paste-in-excel/m-p/398684#M566808</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this code from &lt;A _jive_internal="true" href="https://community.qlik.com/people/rebeccad"&gt;rebeccad&lt;/A&gt;:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sub Export&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set XLApp = CreateObject("Excel.Application")&lt;/P&gt;&lt;P&gt;XLApp.Visible = true 'you can make it false, if you want to make it in the background&lt;/P&gt;&lt;P&gt;set XLDoc = XLApp.Workbooks.Add&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;XLDoc.Sheets(1).name = "Export"&lt;/P&gt;&lt;P&gt;set XLSheet = XLDoc.Worksheets(1)&lt;/P&gt;&lt;P&gt;set MyTable = ActiveDocument.GetSheetObject("CH01") 'Change CH01 to the object you want to export to Excel (Object Properties &amp;gt; General tab &amp;gt; far right)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set XLSheet = XLDoc.Worksheets(1) 'Select sheet where data should be pasted&lt;/P&gt;&lt;P&gt;Mytable.CopyTableToClipboard true 'Copy data to Clipboard&lt;/P&gt;&lt;P&gt;XLSheet.Paste XLSheet.Range("A1") 'Paste data starting at A1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;End Sub&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Dec 2012 09:53:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/macro-for-copy-and-paste-in-excel/m-p/398684#M566808</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2012-12-03T09:53:09Z</dc:date>
    </item>
    <item>
      <title>Re: macro for copy and paste in excel</title>
      <link>https://community.qlik.com/t5/QlikView/macro-for-copy-and-paste-in-excel/m-p/398685#M566809</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gysbert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your reply,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it is not working,when i click on the button macro is opening,can you please explain me little bit more...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Dec 2012 10:25:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/macro-for-copy-and-paste-in-excel/m-p/398685#M566809</guid>
      <dc:creator />
      <dc:date>2012-12-03T10:25:00Z</dc:date>
    </item>
    <item>
      <title>Re: macro for copy and paste in excel</title>
      <link>https://community.qlik.com/t5/QlikView/macro-for-copy-and-paste-in-excel/m-p/398686#M566810</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gysbert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your reply,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it is not working,when i click on the button macro is opening,can you please explain me little bit more...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Dec 2012 10:25:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/macro-for-copy-and-paste-in-excel/m-p/398686#M566810</guid>
      <dc:creator />
      <dc:date>2012-12-03T10:25:14Z</dc:date>
    </item>
    <item>
      <title>Re: macro for copy and paste in excel</title>
      <link>https://community.qlik.com/t5/QlikView/macro-for-copy-and-paste-in-excel/m-p/398687#M566811</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Set Requested Module Security to System Access and Current Local Security to Allow System Access. This is need to allow the macro to create an Excel instance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Dec 2012 10:47:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/macro-for-copy-and-paste-in-excel/m-p/398687#M566811</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2012-12-03T10:47:59Z</dc:date>
    </item>
    <item>
      <title>Re: macro for copy and paste in excel</title>
      <link>https://community.qlik.com/t5/QlikView/macro-for-copy-and-paste-in-excel/m-p/398688#M566812</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 enabled this two options,but still same error. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Dec 2012 11:22:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/macro-for-copy-and-paste-in-excel/m-p/398688#M566812</guid>
      <dc:creator />
      <dc:date>2012-12-03T11:22:15Z</dc:date>
    </item>
  </channel>
</rss>

