How to avoid overwriting in EXcel worksheet when program run next time?
1 回表示 (過去 30 日間)
古いコメントを表示
[status,msg] = xlswrite('filename',RESULT);
0 件のコメント
採用された回答
Iain
2013 年 8 月 28 日
Step 1:
Check to see what has been written to the worksheet:
[n t r] = xlsread(filename,sheetno);
Step 2:
Figure out where to write your new data.
code
Step 3:
Write the new data to that location:
xlswrite(filename,result,sheetno,topleftcorner)
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Spreadsheets についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!