Hi, I'm having a similar difficult.

I can include the string in the dataset but when I export to .csv the first column/row doesn't appear the strings. But if I add the string to another column and row its ok.

Adding to the first column [0]:

Quote

string FormatA = "sss,f,f,f";
function evaluate()
{

dataNew(2, 10, 4);
string statistic = dataStr(2, 0, 0);
strcpy(statistic, "testing");

watch("!i",dataStr(2,0,0));
dataSaveCSV(2,FormatA,"History\\test.csv");



.csv result ->" ,0.00000,0.00000,0.00000,0.00000,0.00000"

changing dataStr to dataStr(2,1,0) -> .csv first line result -> "0.00000,,0.00000,0.00000,0.00000,0.00000"

dataStr(2,1,1) -> .csv second line result -> "0.00000,testing,0.00000,0.00000,0.00000"

Is there a way to add strings to the first column/row, or I'm doing something wrong?

Thanks!