How to avoid overwriting in EXcel worksheet when program run next time?
    3 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
[status,msg] = xlswrite('filename',RESULT);
0 commentaires
Réponse acceptée
  Iain
      
 le 28 Août 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 commentaires
Plus de réponses (0)
Voir également
Catégories
				En savoir plus sur Spreadsheets dans Help Center et File Exchange
			
	Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

