Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a very (seemingly) simple task. I wish to export to CSV from a QlikView Object (such as a table or chart) and write it out to a CSV with no header line. The only part I require is the data.
Currently I am using a module to perform this task but it includes the headers:
LogPath = ("C:\FRED.CSV")
Set Obj = ActiveDocument.GetSheetObject("NAMEOFTABLE")
Obj.Export LogPath, ","
Have you found a solution to this yet?
I am having the same issue.
Thank you - I had come up with a slightly simpler version than this but this is much better!