<?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 a bar chart to excel in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Export-a-bar-chart-to-excel/m-p/205754#M62097</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As far as my knowledge is concern, I never seen any simple way to this. May be there would be a macro to generate bar chart on excel.&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;Shumail&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 21 Jul 2010 07:54:32 GMT</pubDate>
    <dc:creator>shumailh</dc:creator>
    <dc:date>2010-07-21T07:54:32Z</dc:date>
    <item>
      <title>Export a bar chart to excel</title>
      <link>https://community.qlik.com/t5/QlikView/Export-a-bar-chart-to-excel/m-p/205753#M62096</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've been looking through the forum for an answer for this and I haven't been able to find a good one.&lt;/P&gt;&lt;P&gt;My question is very simple. I want to export a bar chart (image) from qlikview into excel by clicking on the export to excel button. Problem is, when I do this, it exports a table of the values used to create the bar chart and not the actual graph itself. Does anyone know how you can enable qlikview to do this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jun 2010 00:51:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-a-bar-chart-to-excel/m-p/205753#M62096</guid>
      <dc:creator />
      <dc:date>2010-06-29T00:51:18Z</dc:date>
    </item>
    <item>
      <title>Export a bar chart to excel</title>
      <link>https://community.qlik.com/t5/QlikView/Export-a-bar-chart-to-excel/m-p/205754#M62097</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As far as my knowledge is concern, I never seen any simple way to this. May be there would be a macro to generate bar chart on excel.&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;Shumail&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jul 2010 07:54:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-a-bar-chart-to-excel/m-p/205754#M62097</guid>
      <dc:creator>shumailh</dc:creator>
      <dc:date>2010-07-21T07:54:32Z</dc:date>
    </item>
    <item>
      <title>Export a bar chart to excel</title>
      <link>https://community.qlik.com/t5/QlikView/Export-a-bar-chart-to-excel/m-p/205755#M62098</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;There is no direct QlikView option which can be enabled to Export Graph into Excel. Alternatively you can achieve this by writing a macro . The macro is as below :-&lt;/P&gt;&lt;P&gt;Sub ExportGraph()&lt;BR /&gt;Dim vSheet&lt;BR /&gt;Set XLApp = CreateObject("Excel.Application")&lt;BR /&gt;XLApp.Visible = TRUE&lt;BR /&gt;Set XLDoc = XLApp.Workbooks.Add&lt;BR /&gt;vSheet = ""&lt;BR /&gt;vSheet = "Sheet1"&lt;BR /&gt;ActiveDocument.GetSheetObject("CH26").CopyBitmapToClipboard 'Copy the charts&lt;BR /&gt;XLDoc.Sheets(vSheet).Range("A" &amp;amp; 1).Select&lt;BR /&gt;XLDoc.Sheets(vSheet).Paste&lt;/P&gt;&lt;P&gt;Set XLDoc = Nothing&lt;BR /&gt;Set XLApp = Nothing&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;End Sub&lt;/P&gt;&lt;P&gt;Hope, it will work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jul 2010 12:55:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-a-bar-chart-to-excel/m-p/205755#M62098</guid>
      <dc:creator>manishkumar75</dc:creator>
      <dc:date>2010-07-21T12:55:24Z</dc:date>
    </item>
    <item>
      <title>Export a bar chart to excel</title>
      <link>https://community.qlik.com/t5/QlikView/Export-a-bar-chart-to-excel/m-p/205756#M62099</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, Manish.&lt;BR /&gt;&lt;BR /&gt;Your macro will export chart as a bitmap (as a picture) but will not create a bar chart in Excel &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jul 2010 13:20:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-a-bar-chart-to-excel/m-p/205756#M62099</guid>
      <dc:creator>sparur</dc:creator>
      <dc:date>2010-07-21T13:20:10Z</dc:date>
    </item>
    <item>
      <title>Export a bar chart to excel</title>
      <link>https://community.qlik.com/t5/QlikView/Export-a-bar-chart-to-excel/m-p/205757#M62100</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;It is true, that the macro will export chart as bitmap(as a picture) , but this what asked in the post.&lt;/P&gt;&lt;P&gt;Below is the problem statement :&lt;/P&gt;&lt;P&gt;My question is very simple. &lt;STRONG&gt;I want to export a bar chart (image) from qlikview&lt;/STRONG&gt; into excel by clicking on the export to excel button. Problem is, when I do this, it exports a table of the values used to create the bar chart and not the actual graph itself. Does anyone know how you can enable qlikview to do this?&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Smile" src="http://community.qlik.com/emoticons/emotion-1.gif" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jul 2010 13:33:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-a-bar-chart-to-excel/m-p/205757#M62100</guid>
      <dc:creator>manishkumar75</dc:creator>
      <dc:date>2010-07-21T13:33:49Z</dc:date>
    </item>
    <item>
      <title>Export a bar chart to excel</title>
      <link>https://community.qlik.com/t5/QlikView/Export-a-bar-chart-to-excel/m-p/205758#M62101</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi mainsh,&lt;/P&gt;&lt;P&gt;Yes your macro will export the bar chart but the macros are not running in the Qlikview 9.00 version in the Access point.&lt;/P&gt;&lt;P&gt;Since i am trying to do the same thing.Since macros are not working . I am left without solution &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Regards,XXX&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jul 2010 13:38:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-a-bar-chart-to-excel/m-p/205758#M62101</guid>
      <dc:creator />
      <dc:date>2010-07-21T13:38:22Z</dc:date>
    </item>
    <item>
      <title>Export a bar chart to excel</title>
      <link>https://community.qlik.com/t5/QlikView/Export-a-bar-chart-to-excel/m-p/205759#M62102</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yeah, Manish.&lt;/P&gt;&lt;P&gt;sorry, I didn't understand about initial problem &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jul 2010 13:48:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-a-bar-chart-to-excel/m-p/205759#M62102</guid>
      <dc:creator>sparur</dc:creator>
      <dc:date>2010-07-21T13:48:08Z</dc:date>
    </item>
    <item>
      <title>Re: Export a bar chart to excel</title>
      <link>https://community.qlik.com/t5/QlikView/Export-a-bar-chart-to-excel/m-p/205760#M62103</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes me also looking for similar requirement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jun 2015 08:40:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-a-bar-chart-to-excel/m-p/205760#M62103</guid>
      <dc:creator>vardhancse</dc:creator>
      <dc:date>2015-06-23T08:40:17Z</dc:date>
    </item>
    <item>
      <title>Re: Export a bar chart to excel</title>
      <link>https://community.qlik.com/t5/QlikView/Export-a-bar-chart-to-excel/m-p/205761#M62104</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;instead of macro we can get the image directly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;browser-&amp;gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: Verdana, sans-serif; color: #365f91;"&gt;In browser-&amp;gt;Right click(on the required chart)-&amp;gt;print-&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: Verdana, sans-serif; color: #365f91;"&gt;Graph image will be opened in separate browser window-&amp;gt;Image-&amp;gt;right click-&amp;gt;copy and paste in excel.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: Verdana, sans-serif; color: #365f91;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: Verdana, sans-serif; color: #365f91;"&gt;we can get as an image in excel&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: Verdana, sans-serif; color: #365f91;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: Verdana, sans-serif; color: #365f91;"&gt;but looking for a solution to export direct graph instead of image&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jun 2015 08:55:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-a-bar-chart-to-excel/m-p/205761#M62104</guid>
      <dc:creator>vardhancse</dc:creator>
      <dc:date>2015-06-23T08:55:16Z</dc:date>
    </item>
  </channel>
</rss>

