Appdesigner: Writing Data To Excel
    7 views (last 30 days)
  
       Show older comments
    
  % Button pushed function: WriteDataButton
        function WriteDataButtonPushed(app, event)
            w = writetable("Book1.xlsx","Sheet",1);
            app.UITable.Data = w;
        end
I can open an excel sheet with opentable, so I just assumed that writetable would work in the oppose way. I was wrong.
I have the error:
Error using writetable
Too many output arguments.
Is there a way to get this to work?
0 Comments
Accepted Answer
More Answers (0)
See Also
Categories
				Find more on Spreadsheets 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!
