<?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 Export multiple charts to excel with a button in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Export-multiple-charts-to-excel-with-a-button/m-p/175961#M44158</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you everybody for the overwhelming amount of answers that you sent me. However, for my problem in particulair i have found a walkaround in which i don't need multiple objects anymore.&lt;/P&gt;&lt;P&gt;I am sure I can use your answers in the future!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 07 Sep 2009 19:00:23 GMT</pubDate>
    <dc:creator>tabletuner</dc:creator>
    <dc:date>2009-09-07T19:00:23Z</dc:date>
    <item>
      <title>Export multiple charts to excel with a button</title>
      <link>https://community.qlik.com/t5/QlikView/Export-multiple-charts-to-excel-with-a-button/m-p/175957#M44154</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;I've created a report for my customer consisting of multiple charts (pivot and straight tables) that are placed next to each other. They represent together 1 report that my customer demands.&lt;/P&gt;&lt;P&gt;However, my customer would like to export these charts to excel. The export should result in 1 openend excel file that shows all the data from the charts that represent the report. In my opinion it is not possible to export them all together to excel with a single push on a button in standard QLikview. I hope I am wrong...&lt;/P&gt;&lt;P&gt;I think there might be a VB solution to this. Can anyone confirm this? And can anyone send me an example how to accomplish this in VB script?&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Tjeerd&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Sep 2009 15:30:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-multiple-charts-to-excel-with-a-button/m-p/175957#M44154</guid>
      <dc:creator>tabletuner</dc:creator>
      <dc:date>2009-09-04T15:30:51Z</dc:date>
    </item>
    <item>
      <title>Export multiple charts to excel with a button</title>
      <link>https://community.qlik.com/t5/QlikView/Export-multiple-charts-to-excel-with-a-button/m-p/175958#M44155</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe you don't need to create a macro, drag and drop your charts into an Excel spreadsheet. Then save your Excel file.&lt;/P&gt;&lt;P&gt;When you reopen your Excel application, it will connect to the original Qvw file and update the chart.&lt;/P&gt;&lt;P&gt;Also, charts remains Wlikview object you can filter.&lt;/P&gt;&lt;P&gt;To make it work, you need the plugin to be installed on the machine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Sep 2009 15:54:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-multiple-charts-to-excel-with-a-button/m-p/175958#M44155</guid>
      <dc:creator />
      <dc:date>2009-09-04T15:54:33Z</dc:date>
    </item>
    <item>
      <title>Export multiple charts to excel with a button</title>
      <link>https://community.qlik.com/t5/QlikView/Export-multiple-charts-to-excel-with-a-button/m-p/175959#M44156</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;maybe with this code could obtain it:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;'COMMON REPORT IN ALL THE REPORTS EXCEL&lt;BR /&gt;sub A_InformeExcel_ParteComun&lt;BR /&gt;&lt;BR /&gt; dim oDQVInformeExcel&lt;BR /&gt; dim oDQVUtils&lt;BR /&gt; dim bError&lt;BR /&gt; dim auxiliar&lt;BR /&gt; dim var&lt;BR /&gt; dim linea&lt;BR /&gt; dim columna&lt;BR /&gt; dim avanza&lt;BR /&gt;&lt;BR /&gt; bError = false&lt;BR /&gt;&lt;BR /&gt; Set oDQVInformeExcel = CreateObject("QlikTech.QlikView")&lt;BR /&gt; Set oDQVUtils = CreateObject("QlikTech.QlikView")&lt;BR /&gt;&lt;BR /&gt; Set xls = CreateObject("EXCEL.APPLICATION")&lt;BR /&gt;&lt;BR /&gt; ruta = ActiveDocument.GetPathName&lt;BR /&gt;&lt;BR /&gt; pos = InstrRev(ruta,"\")&lt;BR /&gt;&lt;BR /&gt; ruta_bona = left(ruta,pos)&lt;BR /&gt;&lt;BR /&gt; ''ASYNCHRONOUS MESSAGE&lt;BR /&gt; 'if (not oDllUtils.Inicializar(ActiveDocument)) then bError=true&lt;BR /&gt;&lt;BR /&gt; 'oDllUtils.MostrarMsgAsincronico "Wait Please...", "Creating Report Excel"&lt;BR /&gt; ''&lt;BR /&gt;&lt;BR /&gt; TemplateFile = ruta_bona &amp;amp; "Informes\Plantilla\INFO_MENSUAL.xls"&lt;BR /&gt;&lt;BR /&gt; If Not xls Is Nothing Then&lt;BR /&gt;&lt;BR /&gt; Set objWorkbook = xls.Workbooks.open (TemplateFile)&lt;BR /&gt;&lt;BR /&gt; If objWorkbook Is Nothing Then&lt;BR /&gt;&lt;BR /&gt; msgbox "Could not have acceded to the file &amp;lt; "&amp;amp; TemplateFile &amp;amp; " &amp;gt;. Please look if the route exists."&lt;BR /&gt;&lt;BR /&gt; exit sub&lt;BR /&gt;&lt;BR /&gt; else&lt;BR /&gt;&lt;BR /&gt; 'msgbox "Opened the report of Excel"&lt;BR /&gt;&lt;BR /&gt; xls.Visible = False&lt;BR /&gt;&lt;BR /&gt; end if&lt;BR /&gt;&lt;BR /&gt; else&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; msgbox "One could not have acceded to Microsoft EXCEL"&lt;BR /&gt;&lt;BR /&gt; exit sub&lt;BR /&gt;&lt;BR /&gt; end if&lt;BR /&gt;&lt;BR /&gt; 'xls.Visible = True&lt;BR /&gt;'=================================================================================================&lt;BR /&gt;&lt;BR /&gt; 'BODY OF MACRO&lt;BR /&gt;&lt;BR /&gt;'=============================================================================================&lt;BR /&gt; ActiveDocument.GetSheetObject("CH345").CopyBitmapToClipboard&lt;BR /&gt; xls.Cells(traslado+1,6).Select&lt;BR /&gt; xls.ActiveSheet.Paste&lt;BR /&gt; xls.Selection.ShapeRange.ScaleWidth 1, 0, 0&lt;BR /&gt; xls.Selection.ShapeRange.ScaleHeight 1, 0, 0&lt;BR /&gt;'' Close and Save&lt;BR /&gt; 'OPTION 2 --&amp;gt; Save in a normal directory&lt;BR /&gt; salva = ruta_bona &amp;amp; "Informes\INFO"&amp;amp;right(year(now()),2) &amp;amp;"_"&amp;amp;month(now)&amp;amp;"_"&amp;amp;day(now())&amp;amp;".xls"&lt;BR /&gt;&lt;BR /&gt; xls.ActiveWorkbook.SaveAs salva&lt;BR /&gt;&lt;BR /&gt; 'We make the excel visible&lt;BR /&gt;&lt;BR /&gt; xls.Visible = True&lt;BR /&gt;&lt;BR /&gt; 'Hide ASYNCHRONOUS MESSAGE&lt;BR /&gt; 'oDllUtils.OcultarMsgActual&lt;BR /&gt;&lt;BR /&gt; if (bError) then Msgbox "A mistake has happened during the generation of the report", vbCritical or vbOKOnly, "Error"&lt;BR /&gt;end sub&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;I have translated all the messages from the Spanish, sorry for my english...&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pol&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Sep 2009 17:09:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-multiple-charts-to-excel-with-a-button/m-p/175959#M44156</guid>
      <dc:creator />
      <dc:date>2009-09-04T17:09:57Z</dc:date>
    </item>
    <item>
      <title>Export multiple charts to excel with a button</title>
      <link>https://community.qlik.com/t5/QlikView/Export-multiple-charts-to-excel-with-a-button/m-p/175960#M44157</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think this application can solve the "SendToExcel" problems&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.nprinting.com" title="NPrinting"&gt;NPrinting&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Some &lt;A href="http://www.nprinting.com/tutorials.php"&gt;Video tutorials&lt;/A&gt; are here&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Sep 2009 17:51:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-multiple-charts-to-excel-with-a-button/m-p/175960#M44157</guid>
      <dc:creator />
      <dc:date>2009-09-07T17:51:02Z</dc:date>
    </item>
    <item>
      <title>Export multiple charts to excel with a button</title>
      <link>https://community.qlik.com/t5/QlikView/Export-multiple-charts-to-excel-with-a-button/m-p/175961#M44158</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you everybody for the overwhelming amount of answers that you sent me. However, for my problem in particulair i have found a walkaround in which i don't need multiple objects anymore.&lt;/P&gt;&lt;P&gt;I am sure I can use your answers in the future!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Sep 2009 19:00:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-multiple-charts-to-excel-with-a-button/m-p/175961#M44158</guid>
      <dc:creator>tabletuner</dc:creator>
      <dc:date>2009-09-07T19:00:23Z</dc:date>
    </item>
  </channel>
</rss>

