Problem on acessing excel by activeX command in Matlab
2 次查看(过去 30 天)
显示 更早的评论
I tested code below
Excel = actxserver('Excel.Application');
set(Excel,'Visible',1);
Workbooks = Excel.Workbooks.Open('C:\Users\Bibi\Documents\MATLAB\New Microsoft Excel Worksheet.xlsx');
Excel.Worksheets.Add
Then I found I successfully added a new sheet "sheet2" before "sheet1"
But I searched for excel objects in http://msdn.microsoft.com/en-us/library/office/ff821537(v=office.15).aspx
Actually, one can arrange the order of the sheet by adding count and before just as below,
Worksheets.Add *Count:=2, Before:=Sheets(1)
But how to add "Count" and "Before" in matlab language, I tried many times but all failed.
0 个评论
采纳的回答
Tejas M U
2014-6-30
Have you tried the below link: http://www.mathworks.com/matlabcentral/answers/2603-add-a-new-excel-sheet-from-matlab
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 ActiveX 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!