How to avoid overwriting in EXcel worksheet when program run next time?
    3 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
[status,msg] = xlswrite('filename',RESULT);
0 Commenti
Risposta accettata
  Iain
      
 il 28 Ago 2013
        Step 1:
Check to see what has been written to the worksheet:
 [n t r] = xlsread(filename,sheetno);
Step 2:
Figure out where to write your new data.
code
Step 3:
Write the new data to that location:
 xlswrite(filename,result,sheetno,topleftcorner)
2 Commenti
Più risposte (0)
Vedere anche
Categorie
				Scopri di più su Spreadsheets in Help Center e File Exchange
			
	Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

