Add new data into existing excel file
27 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hazel Sialongo
el 4 de Oct. de 2016
Comentada: Cádmo Dias
el 25 de Mzo. de 2019
I have an existing excel file and I want to add new data in a new column. How will I do that?
0 comentarios
Respuesta aceptada
Gareth Thomas
el 4 de Oct. de 2016
If you use xlswrite with this code it should work:
filename = 'testdata.xlsx';
A = {'Time','Temperature'; 12,98; 13,99; 14,97};
sheet = 2;
xlRange = 'E1';
xlswrite(filename,A,sheet,xlRange)
Notice how the xlRange shows the columns.
2 comentarios
Cádmo Dias
el 25 de Mzo. de 2019
First of all, thanks for your help,Gareth!
Hazel, I suggest to you increase the range, in "xlRange" variable, to change the column.
Más respuestas (0)
Ver también
Categorías
Más información sobre Spreadsheets en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!