headings in excel
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I was wondering if anyone knows how to make column headings using xlswrite function. I tried making a string array that would precede the data, but in the .xls file xlswrite function would expand every character in the string into individual cells, rather than the entire string in one cell to act as the column title. If anyone knows how to have the string, act like a number so that they can be added into the excel in one cell, I would really appreciate it.
- thanks
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (1)
Eamonn
am 19 Jun. 2012
The above solution seems a bit excessive. What if you just did something like this:
T = {'Apple', 'Bear', 'Cat', 'Dog'}; xlswrite(filenameA, T, 1, 'A1');
or if it's just a once off set of titles
xlswrite(filenameA, {'Apple', 'Bear', 'Cat', 'Dog'}, 1, 'A1');
Siehe auch
Kategorien
Mehr zu Spreadsheets finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!