Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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?
Documentation says about second parameter. Did you try with an empty string?
objChart.Export "G:\SuiviRupture\Rupture.CSV", ""
Are you sure you want to glue everything together. It will be difficult to peel off individual values...