Add new data into existing excel file
28 ビュー (過去 30 日間)
古いコメントを表示
I have an existing excel file and I want to add new data in a new column. How will I do that?
0 件のコメント
採用された回答
Gareth Thomas
2016 年 10 月 4 日
If you use xlswrite with this code it should work:
filename = 'testdata.xlsx';
A = {'Time','Temperature'; 12,98; 13,99; 14,97};
sheet = 2;
xlRange = 'E1';
xlswrite(filename,A,sheet,xlRange)
Notice how the xlRange shows the columns.
2 件のコメント
Cádmo Dias
2019 年 3 月 25 日
First of all, thanks for your help,Gareth!
Hazel, I suggest to you increase the range, in "xlRange" variable, to change the column.
その他の回答 (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!