Question: Export several files Excel.

Hello, I want to export several excel files using a loop to

matrixMY: = Matrix (0 .. 5, 0 .. 1);
d: = 0;
with (ExcelTools);
for h from 1 to 10 do:
Export (matrixMY, "d: \ myfiles [h] .xls", "Payroll", "B2");
matrixMY [d, 1]: = h;
end do:


But this does not work well.

Regards.

Please Wait...