reading and writing the same Excel file in app designer

6 views (last 30 days)
Hello;
I want to create a table that reads from an excel file, and after opening the table the user edit the table, and tthe editing should be saved in the same excel file
when the second time, the table is opend it must be updated.
my code:
function startupFcn(app)
Data = xlsread('edit_firststage2.xlsx');
-
-
-----------
function SendButtonPushed(app, event)
writetable(s1,'edit_firststage2.xlsx') % when I run the program it give rror in thiss line and it saying "you do not have permission"
Thank you in advance!

Accepted Answer

Geoff Hayes
Geoff Hayes on 28 Mar 2020
ZM - check to see if you have permission to read and write to that file. If you do, then consider using readtable instead of xlsread to see if that somehow (?) allows you to better read and write to the same file (as xlsread isn't recommended to be used).

More Answers (1)

ZM
ZM on 28 Mar 2020
Edited: ZM on 28 Mar 2020
Thank you for your reply.
I do not have problem in reading the file, I have the problem in writing on this excel file. matlab do not have problem in writing on new excel file(first run) but when i repeat the run after modifying the data in my app, and i want to uploaded into same file, it gives this error.
Thank you
Zhina
  2 Comments
Geoff Hayes
Geoff Hayes on 28 Mar 2020
Zhina - did you try using readtable instead of xlsread? What happens if, for a new file, you create and write to it with writetable and then try this again? For example,
writetable(s1,'edit_firststage2.xlsx');
writetable(s1,'edit_firststage2.xlsx');
Does the second writetable fail? I realize that you are writing the same data to the same file, but this would be an interesting test to see if writing to pre-existing files is a problem OR is it just a problem when you try to read from a file (with xlsread) and then try to write to that same file?
ZM
ZM on 28 Mar 2020
thank you for your help, I used read table, but I have also to convert data that I read from excel file by using (table2cell) and converting it back after my calculation by(cell2table). and writing it to the excel file.
the reason for this is that app.UI Table in app deeesigner can take cell data.
Thank you

Sign in to comment.

Categories

Find more on Data Import from MATLAB in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!