Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
steph24350
Contributor III
Contributor III

Exporter vers Excel

Bonjour,

 

J'aimerais quel est le script pour exporter un tableau QlikView vers une feuille Excel

 

Merci

 

1 Reply
fkeuroglian
Partner - Master
Partner - Master

Hi, you can use this macro

SUB EXPORT
set sObject1 = ActiveDocument.GetSheetObject("CH_EXPORT")
sObject1.Export "E:\MyDoc.csv", ", "
end sub

CH_EXPORT is the name of the object containing the data (Your table)

See this posts:

https://community.qlik.com/t5/QlikView-Scripting/Macro-export-to-excel-in-Qlikview-Server/td-p/11783...

https://community.qlik.com/t5/QlikView-App-Development/Qlikview-to-excel-export-macro/td-p/401051

https://community.qlik.com/t5/New-to-QlikView/macro-for-Export-Table-data-to-excel-with-desired-file...

 

Hope helps

FernandoK