Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
debanjan_k
Partner - Contributor II
Partner - Contributor II

How to export data in excel file from a classical report along with chart title.

How to export data in excel file from a classical report along with chart title.

4 Replies
pooja_prabhu_n
Creator III
Creator III

Hi,

You can try using macros

Refer this link for more information:

How to export to Excel include Title Caption?

Thanks,

Pooja

boraste-sagar
Contributor III
Contributor III

You could create a text object and make it look similar to the title, but you cannot export the title without macros.


Sub ExcelExpwCaption

     'Set the path where the excel will be saved

     filePath = "E:\TestBB.xls"

     'Create the Excel spreadsheet

     Set excelFile = CreateObject("Excel.Application")

     excelFile.Visible = true

     'Create the WorkBook

     Set WorkBook = excelFile.WorkBooks.Add

     'Create the Sheet

     Set Sheet = WorkBook.WorkSheets(1)

     'Get the chart we want to export

     Set tableToExport = ActiveDocument.GetSheetObject("LB02")

     Set chartProperties = tableToExport.GetProperties

     tableToExport.CopyTableToClipboard true

     'Get the caption

     chartCaption = tableToExport.GetCaption.Name.v

     'MsgBox chartCaption

     'Set the first cell with the caption

     Sheet.Range("A1") = chartCaption

     'Paste the rest of the chart

     Sheet.Paste Sheet.Range("A2")

     excelFile.Visible = true

     'Save the file and quit excel

     WorkBook.SaveAs filePath

     WorkBook.Close

     excelFile.Quit

     'Cleanup

     Set WorkBook = nothing

     Set excelFile = nothing

End Sub

debanjan_k
Partner - Contributor II
Partner - Contributor II
Author

Actually I want a generic solution for all classical reports used in my qlikview application not for a single or particular fixed classical report.

boraste-sagar
Contributor III
Contributor III

will try and l.u.k