How to import XLS files with multiple sheets using the Dataset Array function?
2 ビュー (過去 30 日間)
古いコメントを表示
LS,
I would like to import a XLS file which has multiple worksheets in it using the dataset array function. Is this possible? When I use the standard code below it just imports the first worksheet.
A = dataset('XLSFile',filename,'ParamName',Value)
Your help is much appreciated.
Best regards,
Frits Hermans
0 件のコメント
回答 (1 件)
Oleg Komarov
2011 年 5 月 3 日
example (same type dataset on 2 excel sheets):
A = cell(2,1);
for ii = 1:2 % number of sheets
A{ii} = dataset('XLSFile','test.xlsx','sheet',ii);
end
cat(1,A{:})
2 件のコメント
Oleg Komarov
2011 年 5 月 5 日
Edit your original post adding the FORMATTED code you're using. In addition post the first three lines of the exceel sheet.
参考
カテゴリ
Help Center および File Exchange で Spreadsheets についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!