xlswrite and excel 2010

4 views (last 30 days)
M M
M M on 20 May 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 Comment
Oleg Komarov
Oleg Komarov on 24 May 2011
I have no problem with your script.
Matlab R2011a Vista32 MS Office 2010

Sign in to comment.

Answers (2)

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

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

Tags

Community Treasure Hunt

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

Start Hunting!