Matlab removes excel formulas when writing(saving) files?
3 ビュー (過去 30 日間)
古いコメントを表示
[file,path] = uiputfile('*.xlsx');
filename = fullfile(path,file);
writetable(app.newdata,filename);
The code i am using is found above. The original xlsx file contains formulas for certain rows and when i modify the file and resave it, matlab removes all the forumlas in the xlsx file.
Is there an input argument that i can put? i cant seem to see it in the documentations.
Cheers.
0 件のコメント
回答 (1 件)
Yusuf Suer Erdem
2021 年 12 月 1 日
Could you try to implement this code below to your system?
[numbers, strings, raw] = xlsread('*.xlsx');
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!