How to avoid overwriting in EXcel worksheet when program run next time?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
[status,msg] = xlswrite('filename',RESULT);
0 comentarios
Respuesta aceptada
Iain
el 28 de Ag. de 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 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Data Import from MATLAB en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!