How to insert multiple spreadsheets to a workbook from Matlab
    5 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
    wangm
 il 29 Lug 2020
  
    
    
    
    
    Modificato: Walter Roberson
      
      
 il 28 Set 2020
            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 Commenti
Risposta accettata
  Michael Croucher
      
 il 28 Set 2020
        You can add the number of sheets as an extra argument.  So, for 5 sheets:
eNewSheet = Add(eSheets,[],eSheet1,5);
1 Commento
Più risposte (0)
Vedere anche
Categorie
				Scopri di più su Loops and Conditional Statements in Help Center e File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

