How can I avoid generating extra sheets in a loop while using "writetable" function?
5 views (last 30 days)
Show older comments
Abolfazl Jalali Shahrood
on 18 Jun 2018
Commented: Abolfazl Jalali Shahrood
on 22 Jun 2018
Here is the code:
---------------------------
Year=[1993 2003 2011 2015]
for an=1:4
Inputfile= xlsread(Inputfile,num2str(Year(an)));
x=Inputfile(:,1);y=Inputfile(:,2);
T=table(x,y);
filename2=strcat(num3,RIVNOM,'poly','.xls');
sheet=num2str(Year(an));
writetable(T,filename2,'sheet',sheet);
end
-----------------------------------
It results in an excel file which has three extra sheets at the beginning (sheet1, sheet2, sheet3) and then (1993,2003,2011,2015).
Here is the question: how to avoid generating extra and empty sheets.
Thank you.
0 Comments
Accepted Answer
Tristan Yang
on 21 Jun 2018
Hi Abolfazl,
Unfortunately there is no easy way to use "writetable" function itself to change this behavior. You may consider the following:
1. You can first use the writetable 'sheet' option with index instead of the sheet names, which would write your data in 'sheet1', 'sheet2', 'sheet3' and 'sheet4'. Then use the solution from this post to change the name into the years using actxserver.
2. You can also keep your current workflow and try to remove the extra sheets by using the solution from this post with actxserver.
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!