Add new data into existing excel file
조회 수: 28 (최근 30일)
이전 댓글 표시
I have an existing excel file and I want to add new data in a new column. How will I do that?
댓글 수: 0
채택된 답변
Gareth Thomas
2016년 10월 4일
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
Cádmo Dias
2019년 3월 25일
First of all, thanks for your help,Gareth!
Hazel, I suggest to you increase the range, in "xlRange" variable, to change the column.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Spreadsheets에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!