<?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: How to export to Excel include Title Caption? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-export-to-Excel-include-Title-Caption/m-p/913832#M316986</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See this example:&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 10 Aug 2015 08:04:36 GMT</pubDate>
    <dc:creator>ecolomer</dc:creator>
    <dc:date>2015-08-10T08:04:36Z</dc:date>
    <item>
      <title>How to export to Excel include Title Caption?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-export-to-Excel-include-Title-Caption/m-p/913827#M316981</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;Hi,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;I am looking for a macro to export the data currently select in a straight table(not the column headers, just data) and send to a specified excel file on the next available row.&amp;nbsp; I do not wish to create a new excel file with this macro and I do not want to override what is already in the excel file.&amp;nbsp; I want to just add on to it.&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: #000000;"&gt;Could someone help me out? &lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;Thanks in advanced.&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;PS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Aug 2015 10:57:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-export-to-Excel-include-Title-Caption/m-p/913827#M316981</guid>
      <dc:creator>senpradip007</dc:creator>
      <dc:date>2015-08-06T10:57:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to export to Excel include Title Caption?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-export-to-Excel-include-Title-Caption/m-p/913828#M316982</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sub AppendDataToExcel&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; Const xlCellTypeLastCell = 11&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Set XLApp = CreateObject("Excel.Application")&lt;/P&gt;&lt;P&gt;&amp;nbsp; XLApp.Visible = True &lt;/P&gt;&lt;P&gt;&amp;nbsp; Set XLWorkbook = "C:\Temp\WorkbookName.xlsx")&amp;nbsp;&amp;nbsp; ' Workbook should have the Header Row on Sheet1&lt;/P&gt;&lt;P&gt;&amp;nbsp; Set XLSheet = XLWorkbook.sheets("Sheet1")&lt;/P&gt;&lt;P&gt;&amp;nbsp; XLSheet.select&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Set objRange = XLSheet.UsedRange&lt;/P&gt;&lt;P&gt;&amp;nbsp; objRange.SpecialCells(xlCellTypeLastCell).Activate&lt;/P&gt;&lt;P&gt;&amp;nbsp; intLastRow = XLApp.ActiveCell.Row + 1&lt;/P&gt;&lt;P&gt;&amp;nbsp; XLSheet.Range("A" &amp;amp; intLastRow).Select&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; ActiveDocument.GetSheetObject("CH178").CopyTableToClipboard false&lt;/P&gt;&lt;P&gt;&amp;nbsp; XLSheet.Paste ' -4163&amp;nbsp;&amp;nbsp;&amp;nbsp; 'values&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; XLWorkbook.Save&lt;/P&gt;&lt;P&gt;&amp;nbsp; XLWorkbook.Close&lt;/P&gt;&lt;P&gt;&amp;nbsp; XLApp.Quit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; set v = nothing&lt;/P&gt;&lt;P&gt;&amp;nbsp; set XLSheet = nothing&lt;/P&gt;&lt;P&gt;&amp;nbsp; set XLWorkbook = nothing&lt;/P&gt;&lt;P&gt;&amp;nbsp; set XLApp = nothing&lt;/P&gt;&lt;P&gt;&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>Thu, 06 Aug 2015 13:48:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-export-to-Excel-include-Title-Caption/m-p/913828#M316982</guid>
      <dc:creator>m_woolf</dc:creator>
      <dc:date>2015-08-06T13:48:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to export to Excel include Title Caption?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-export-to-Excel-include-Title-Caption/m-p/913829#M316983</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Thanks for the prompt reply. But its not working. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;PS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Aug 2015 07:03:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-export-to-Excel-include-Title-Caption/m-p/913829#M316983</guid>
      <dc:creator>senpradip007</dc:creator>
      <dc:date>2015-08-10T07:03:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to export to Excel include Title Caption?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-export-to-Excel-include-Title-Caption/m-p/913830#M316984</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Aug 2015 07:26:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-export-to-Excel-include-Title-Caption/m-p/913830#M316984</guid>
      <dc:creator>avinashelite</dc:creator>
      <dc:date>2015-08-10T07:26:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to export to Excel include Title Caption?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-export-to-Excel-include-Title-Caption/m-p/913831#M316985</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 3 way s to do it .&lt;/P&gt;&lt;P&gt;1.Go to settings &amp;gt;User Preference &amp;gt;Export &amp;gt; then check on the export with caption in chart option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Macro &lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;Sub ExcelExpwCaption&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Set the path where the excel will be saved&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; filePath = "E:\TestBB.xls"&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: #000000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Create the Excel spreadsheet&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set excelFile = CreateObject("Excel.Application")&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; excelFile.Visible = true&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Create the WorkBook&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set WorkBook = excelFile.WorkBooks.Add&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Create the Sheet&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set Sheet = WorkBook.WorkSheets(1)&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: #000000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Get the chart we want to export&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set tableToExport = ActiveDocument.GetSheetObject("LB02")&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set chartProperties = tableToExport.GetProperties&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; tableToExport.CopyTableToClipboard true&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: #000000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Get the caption&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; chartCaption = tableToExport.GetCaption.Name.v&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'MsgBox chartCaption&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: #000000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Set the first cell with the caption&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sheet.Range("A1") = chartCaption&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Paste the rest of the chart&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sheet.Paste Sheet.Range("A2")&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; excelFile.Visible = true&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: #000000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Save the file and quit excel&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; WorkBook.SaveAs filePath&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; WorkBook.Close&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; excelFile.Quit&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: #000000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Cleanup&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set WorkBook = nothing&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set excelFile = nothing&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;End Sub&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;3. NPrinting tool &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Aug 2015 07:28:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-export-to-Excel-include-Title-Caption/m-p/913831#M316985</guid>
      <dc:creator>avinashelite</dc:creator>
      <dc:date>2015-08-10T07:28:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to export to Excel include Title Caption?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-export-to-Excel-include-Title-Caption/m-p/913832#M316986</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See this example:&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Aug 2015 08:04:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-export-to-Excel-include-Title-Caption/m-p/913832#M316986</guid>
      <dc:creator>ecolomer</dc:creator>
      <dc:date>2015-08-10T08:04:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to export to Excel include Title Caption?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-export-to-Excel-include-Title-Caption/m-p/913833#M316987</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your prompt reply. Tried with your app, but when I click on "&lt;STRONG&gt;Export Excel&lt;/STRONG&gt;" prompting the VBA (macro) code instead of excel.&lt;/P&gt;&lt;P&gt;Please help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Aug 2015 08:58:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-export-to-Excel-include-Title-Caption/m-p/913833#M316987</guid>
      <dc:creator>senpradip007</dc:creator>
      <dc:date>2015-08-10T08:58:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to export to Excel include Title Caption?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-export-to-Excel-include-Title-Caption/m-p/913834#M316988</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;You need define directory in the macro, in the tirdh line&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And you put the name of the table in the macro in line nº 16&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Aug 2015 09:02:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-export-to-Excel-include-Title-Caption/m-p/913834#M316988</guid>
      <dc:creator>ecolomer</dc:creator>
      <dc:date>2015-08-10T09:02:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to export to Excel include Title Caption?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-export-to-Excel-include-Title-Caption/m-p/913835#M316989</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;And you need to select option in the macro "Access to System&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;IMG alt="p28.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/95499_p28.png" style="height: 349px; width: 620px;" /&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Aug 2015 09:04:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-export-to-Excel-include-Title-Caption/m-p/913835#M316989</guid>
      <dc:creator>ecolomer</dc:creator>
      <dc:date>2015-08-10T09:04:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to export to Excel include Title Caption?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-export-to-Excel-include-Title-Caption/m-p/913836#M316990</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Thanks for your prompt reply. Tried the first solution but data has been exported without the caption.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Tried with the second solution as well, but when I click on "&lt;/SPAN&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;Export Excel&lt;/STRONG&gt;&lt;SPAN style="color: #000000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;" prompting the VBA (macro) code instead of excel.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Aug 2015 09:04:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-export-to-Excel-include-Title-Caption/m-p/913836#M316990</guid>
      <dc:creator>senpradip007</dc:creator>
      <dc:date>2015-08-10T09:04:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to export to Excel include Title Caption?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-export-to-Excel-include-Title-Caption/m-p/913837#M316991</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks its working.&lt;/P&gt;&lt;P&gt;Can you please help me to passing the different object ids as the macro parameter ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Aug 2015 09:31:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-export-to-Excel-include-Title-Caption/m-p/913837#M316991</guid>
      <dc:creator>senpradip007</dc:creator>
      <dc:date>2015-08-10T09:31:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to export to Excel include Title Caption?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-export-to-Excel-include-Title-Caption/m-p/913838#M316992</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try with this :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.qlikblog.at/558/qliktip-18-workaround-passing-parameters-qlikviewmacros/" title="http://www.qlikblog.at/558/qliktip-18-workaround-passing-parameters-qlikviewmacros/"&gt;http://www.qlikblog.at/558/qliktip-18-workaround-passing-parameters-qlikviewmacros/&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Aug 2015 09:45:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-export-to-Excel-include-Title-Caption/m-p/913838#M316992</guid>
      <dc:creator>avinashelite</dc:creator>
      <dc:date>2015-08-10T09:45:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to export to Excel include Title Caption?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-export-to-Excel-include-Title-Caption/m-p/913839#M316993</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Reached the goal. Thanks to all.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Aug 2015 10:54:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-export-to-Excel-include-Title-Caption/m-p/913839#M316993</guid>
      <dc:creator>senpradip007</dc:creator>
      <dc:date>2015-08-12T10:54:16Z</dc:date>
    </item>
  </channel>
</rss>

