Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to get data in excel from QV?

Hi All,

How to get data from QV in excel like QV Source in PE Edition?

Can you please give a push start how to design such thing on small level?

Thanks

Shoaib

8 Replies
sudeepkm
Specialist III
Specialist III

Are you looking for exporting data from QlikView to XLS in that case on each of the QlikView Sheet Object you have Send to Excel option. If you are looking for loading data from Excel to QlikView then you can achieve it using Script editor and load from file option.

Kindly let me know if you are looking for something else.

Anonymous
Not applicable
Author

Please right click on object to export and click on send to excel option if you are looking for exporting data

Capture.PNG.png

if need loading data from excel see below is link:

Loading Excel Data into QlikView

Thanks

Nitha

Not applicable
Author

Hey Shoaib,

Do you want this export to excel feature happen automatically once the app is reloaded from a particular table in the access point?

If not then as per other suggestions you can just right click the object and select 'Send to Excel'.

Thanks

AJ

Not applicable
Author

I need the data refreshed in same excel file once the data is reloaded.

anithashivalingappa
Partner - Contributor III
Partner - Contributor III

Hi Shoaib,

Try macros to generate excel files. Before closing the QVW file while data reload macros generates the excel and save it in provided path.

Not applicable
Author

Hi Shoaib

You can use post relaod send to excel macro.

Sub sendtoexcel

ActiveDocument.GetSheetobject("chartID").ExportBiff "Save File Path"

End Sub

It will automatically export the data into excel.

sunilkumarqv
Specialist II
Specialist II

By the help of macros, we can export data from multiple objects (table charts, table boxes) into excel.

All we need to do is to pass the Object IDs in the highlighted line of the macro code below and run the macro by a Button.

//Pls. note that Current Local Security level (in the edit module screen) should be set to Allow Sytem Access level.

//Macro code:

sub launchXL

set oXL=CreateObject("Excel.Application")

oXL.visible=True

oXL.Workbooks.Add

aSheetObj=Array("TB01","CH01")

for i=0 to UBound(aSheetObj)

oXL.Sheets.Add  

Set oSH = oXL.ActiveSheet

oSH.Range("A1").Select   

Set obj = ActiveDocument.GetSheetObject(aSheetObj(i))

obj.CopyTableToClipboard True

oSH.Paste

sCaption=obj.GetCaption.Name.v

set obj=Nothing    

oSH.Rows("1:1").Select

oXL.Selection.Font.Bold = True      

oSH.Cells.Select

oXL.Selection.Columns.AutoFit

oSH.Range("A1").Select    

oSH.Name=left(sCaption,30)  

set oSH=Nothing 

next

set oXL=Nothing

end sub

Not applicable
Author

Hi Shoaib,

If you need your data refreshed in excel after it is reloaded then you can use your macro/trigger for export to excel on Document Event trigger "OnPostReload".

You can also refer to this:

http://community.qlik.com/message/471810#471810

Hope this helps!