what would be the command to save or open a particular excel data.xls with the designation in a particular drive or folder?

1 view (last 30 days)
xlswrite might be the one, but I don't know how to add the information on the destination to save data. Same question to xlsread to search and read a file.

Accepted Answer

Cedric
Cedric on 10 Oct 2017
Edited: Cedric on 10 Oct 2017
Here is an example. Make sure that the destination folder exists already. If not or if you have to create destination folders dynamically, use EXIST for testing if they exist already and MKDIR for making them if necessary.
data = randi( 10, 5, 3 ) ;
header = {'A', 'B', 'C'} ;
% - Build cell array of mixed content (strings and numbers).
data = [header; num2cell( data )] ;
% - Concatenate path bits to relevant destination file/folder.
locator = fullfile( '..', 'Data', 'Measures.xlsx' ) ;
% - Build Excel file.
xlswrite( locator, data ) ;
  3 Comments
yasu osako
yasu osako on 10 Oct 2017
Edited: Cedric on 10 Oct 2017
I got the error as below.
>> header={'a','b','c'};
>> data=randi(10,5,3);
>> locator=fullfile('..','data','measures.xls');
>> xlswrite(locator,data);
Error using xlswrite (line 226)
Invoke Error, Dispatch Exception:
Source: Microsoft Excel
Description: ???? 'C:\Users\Minori2\AppData\data' ????????????????????????????
· ??????????????????????????
· ?????????????????????????????????????????????????????????????????????????????????
· ???????????????????????????????????????????????????????????????????
Help File: C:\Program Files (x86)\Microsoft Office\Office\1041\xlmain9.chm
Help Context ID: 0
Cedric
Cedric on 10 Oct 2017
Edited: Cedric on 10 Oct 2017
It was for building a path that targets a folder at the same level as the current folder.
Let's try to write to a file in the same folder first, to eliminate the complication of building a path: does the following work?
header={'a','b','c'};
data=randi(10,5,3);
xlswrite('test.xlsx',data);

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!