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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Export to csv without delimiter

I use the following macro to export to csv

SET  objChart = ActiveDocument.GetSheetObject("CH461")

    objChart.Export "G:\SuiviRupture\Rupture.CSV", ", "

How to modify it in order to export to csv without delimiter?

2 Replies
Clever_Anjos
Employee
Employee

Documentation says about second parameter. Did you try with an empty string?

Capturar.PNG

objChart.Export "G:\SuiviRupture\Rupture.CSV", "" 

Peter_Cammaert
Partner - Champion III
Partner - Champion III

Are you sure you want to glue everything together. It will be difficult to peel off individual values...