<?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: Export table to Excel with a button in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Export-table-to-Excel-with-a-button/m-p/378559#M141166</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kevinbmsr,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is an inbuilt option in QV where you can right-click the table and select "Send to Excel" and it will export the table for you automatically. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 16 Aug 2012 15:37:32 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-08-16T15:37:32Z</dc:date>
    <item>
      <title>Export table to Excel with a button</title>
      <link>https://community.qlik.com/t5/QlikView/Export-table-to-Excel-with-a-button/m-p/378558#M141165</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would like to create a button for the user to export an entire table (not an image, the data) to Excel. When I create a button, and go to the Actions, the only possible thing that makes sense is "Export", but when I select that, I'm not offered the opportunity to select an entire table, just a list of fields, which is a pain from 1) a development point of view (every time I add a new field to the table, I'd have to remember to update the button), and 2) time. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there something simple I'm missing? I've seen elsewhere that this can be accomplished via a macro, but I'm wondering if there's a faster, easier way. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Aug 2012 15:34:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-table-to-Excel-with-a-button/m-p/378558#M141165</guid>
      <dc:creator />
      <dc:date>2012-08-16T15:34:30Z</dc:date>
    </item>
    <item>
      <title>Re: Export table to Excel with a button</title>
      <link>https://community.qlik.com/t5/QlikView/Export-table-to-Excel-with-a-button/m-p/378559#M141166</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kevinbmsr,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is an inbuilt option in QV where you can right-click the table and select "Send to Excel" and it will export the table for you automatically. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Aug 2012 15:37:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-table-to-Excel-with-a-button/m-p/378559#M141166</guid>
      <dc:creator />
      <dc:date>2012-08-16T15:37:32Z</dc:date>
    </item>
    <item>
      <title>Re: Export table to Excel with a button</title>
      <link>https://community.qlik.com/t5/QlikView/Export-table-to-Excel-with-a-button/m-p/378560#M141167</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, Ravi, I know about the "Send to Excel" option on the Layout page. My table is quite large, and I don't show it on the main sheet. I wanted the users to be able to enter the selection data (start/end dates, etc.), reload the table, and then click an "Export" button all from the "Main" sheet, without having to go to the sheet with the table on it. These people are not QV experts, and while it's pretty easy for you and I to select the "XL" icon, I wanted to make it as simple as possible for them. Enter, enter, click, and done - know what I mean?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Aug 2012 16:19:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-table-to-Excel-with-a-button/m-p/378560#M141167</guid>
      <dc:creator />
      <dc:date>2012-08-16T16:19:33Z</dc:date>
    </item>
    <item>
      <title>Re: Export table to Excel with a button</title>
      <link>https://community.qlik.com/t5/QlikView/Export-table-to-Excel-with-a-button/m-p/378561#M141168</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kevinbmsr,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am afraid thats as simple as it gets. The other option is to use the simple macro which you may have come across already but I am pasting it here anyway if you wish to use it:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sub exportToExcel()&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set obj = ActiveDocument.GetSheetObject("TB01")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;obj.ExportBiff "C:\Test.xlsx"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set obj = nothing&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;End Sub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once you associated this macro with a button, your users can export the table with just a click&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Aug 2012 16:42:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-table-to-Excel-with-a-button/m-p/378561#M141168</guid>
      <dc:creator />
      <dc:date>2012-08-16T16:42:27Z</dc:date>
    </item>
    <item>
      <title>Re: Export table to Excel with a button</title>
      <link>https://community.qlik.com/t5/QlikView/Export-table-to-Excel-with-a-button/m-p/378562#M141169</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, Ravi. Sometimes you don't get the answer you want, but you get the answer you need!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Aug 2012 16:55:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-table-to-Excel-with-a-button/m-p/378562#M141169</guid>
      <dc:creator />
      <dc:date>2012-08-16T16:55:07Z</dc:date>
    </item>
  </channel>
</rss>

