Skip to main content
Woohoo! Qlik Community has won “Best in Class Community” in the 2024 Khoros Kudos awards!
Announcements
Nov. 20th, Qlik Insider - Lakehouses: Driving the Future of Data & AI - PICK A SESSION
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Create QVD of pivot table data

Dear All,

Find The attached File for below discussion.

in attached file sheet 1 contains my data in Pivot Table format and we want to store the same data in qvd as in sheet 2 format.

please help to write macro to export to QVD.

Note : i cannot change the pivot table format as based on that format some other macros are working.

1 Reply
marcus_sommer

Try this:

sub ChartToQVD 

    set obj = ActiveDocument.GetSheetObject("CH01") 

    obj.ExportEx "QvdName.qvd", 4 

end sub 

whereby it might be better to use a different (more specialized) chart/table (maybe on a hidden sheet) for this task.

- Marcus