Problem with export the data from dataset format To CSV (UTF-8)

I think the problem here is Excel, not Ignition. With your script, I get the actual data you're expecting if I open the file in a text editor:

Consider writing out the file data with a leading 'byte order mark', to make it UTF-8 with BOM, which I suspect Excel is expecting:
system.perspective.download(Filename, u'\uFEFF' + data)

2 Likes