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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

export csv

I use the following macro to export to csv

SET  objChart = ActiveDocument.GetSheetObject("CH461")

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

I need to get the following results

Sans titre.png

but I got the following results

Sans titre1.png

How to modify the script ?

Labels (1)
1 Solution

Accepted Solutions
santiago_respane
Specialist
Specialist

Hi,

you should use the second parameter of the export function, please try like this:

SET  objChart = ActiveDocument.GetSheetObject("CH461")

objChart.Export "G:\SuiviRupture\Rupture.csv", ";"

Let me know if this helps.

Kind regards,

View solution in original post

3 Replies
Clever_Anjos
Support
Support

santiago_respane
Specialist
Specialist

Hi,

you should use the second parameter of the export function, please try like this:

SET  objChart = ActiveDocument.GetSheetObject("CH461")

objChart.Export "G:\SuiviRupture\Rupture.csv", ";"

Let me know if this helps.

Kind regards,

Anonymous
Not applicable
Author

Awesome! Many thanks