Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hy people,
I have the following Macro:
sub test
set Obj = ActiveDocument.GetSheetObject("304")
obj.Export "c:\Test.CSV",","
end sub
Indeed, I would export with pleasure the object 303 still in the csv file 304 and 303 in test.csv
What i can do?
In order to append the second object try this:
set Obj = ActiveDocument.GetSheetObject("303")
obj.Export "c:\Test.CSV",","
set Obj = ActiveDocument.GetSheetObject("304")
obj.Export "c:\Test.CSV" , "," , , TRUE
watch the 4th parameter.
Alex
In order to append the second object try this:
set Obj = ActiveDocument.GetSheetObject("303")
obj.Export "c:\Test.CSV",","
set Obj = ActiveDocument.GetSheetObject("304")
obj.Export "c:\Test.CSV" , "," , , TRUE
watch the 4th parameter.
Alex
Thank you to you,
has clapped perfectly. Thank you to you!
Solved my problem too ![]()