Borrar filtros
Borrar filtros

xlswrite and excel 2010

1 visualización (últimos 30 días)
M M
M M el 20 de Mayo de 2011
For some reason the function xlswrite does not return me an excel spread sheet but a cvs. I am wondering if it is because I am using excel 2010 since even this simple command:
for i = 1:10
A=i;
xlswrite('foo.xls',A,'Sheet1',['A' num2str(i)]);
end
which should give me an excel.xls file with a column from 1 to 10 in areas A from 1 to 10. What I get is a foo.cvs file with the number 10 in cell A1 and this warning
Warning: Could not start Excel server for export.
XLSWRITE will attempt to write file in CSV format.
> In xlswrite at 166
In Untitled2 at 21
A .cvs file would be fine but i need to be able to manipulate where the data is placed in the spreadsheet from the MATLAB code, which it doesn't allow me to do at all even for simpler commands. If someone could let me know why this is happening and if there is anything I can do to fix it, I would really appreciate it. Thanks in advance,
  1 comentario
Oleg Komarov
Oleg Komarov el 24 de Mayo de 2011
I have no problem with your script.
Matlab R2011a Vista32 MS Office 2010

Iniciar sesión para comentar.

Respuestas (2)

Razvan
Razvan el 22 de Mayo de 2011
Try
A=[1:10]';
xlswrite('foo.xls',A,'Sheet1');

Walter Roberson
Walter Roberson el 24 de Mayo de 2011
Either you are not using Windows or your Excel is not installed correctly (or perhaps your MATLAB is not installed correctly.)

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by