How to insert multiple spreadsheets to a workbook from Matlab
    조회 수: 5 (최근 30일)
  
       이전 댓글 표시
    
Matlab provide a method to insert one spreadsheet:  using the command 
eNewSheet = Add(eSheets,[],eSheet1);
However, if I know I need to add multiple spreadsheets, e.g. 5,  is there a way to tell Add comment, or I have to do a for loop to insert 5 sheets?
Thanks
댓글 수: 0
채택된 답변
  Michael Croucher
      
 2020년 9월 28일
        You can add the number of sheets as an extra argument.  So, for 5 sheets:
eNewSheet = Add(eSheets,[],eSheet1,5);
추가 답변 (0개)
참고 항목
카테고리
				Help Center 및 File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

