Need to write pre-written excel sheet using xlswrite or other function
Show older comments
For one of my application I want to write specific row & column in excel sheet. My question is with related to "xlswrite" function. My excel is pre-loaded with some data like test report where we mention test case details, description etc.In front of that I want to write a result in the form of PASS or FAIL. Could you please suggest solution how to write specific row column with out deleting other data.
Accepted Answer
More Answers (1)
KL
on 29 Apr 2015
You can also use table functions. For example
T = readtable('Book.xlsx')
newdata = [6 6 6 6 6 6 6 6 6 6];
newdata = newdata';
C =array2table(newdata);
T = [T C];
writetable(T,'Book.xlsx');
Categories
Find more on Spreadsheets in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!