How to read the LAST sheet in excel
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Jake
am 16 Aug. 2016
Kommentiert: Jake
am 17 Aug. 2016
Hi MATLAB experts,
I'd like to read the last sheet in excel spreadsheet. Although the sheet has a name, no matter what, I want to read the last sheet in the file.
Would you mind if I ask you to share your thoughts on this?
Thanks for your help. Jake
inputfolder = 'C:\Matlab\';
holdingfilename = [inputfolder,'prices.xls'];
sheet = 'random';
[numdata, txtdata] = xlsread(holdingfilename, sheet);
0 Kommentare
Akzeptierte Antwort
Azzi Abdelmalek
am 16 Aug. 2016
Bearbeitet: Azzi Abdelmalek
am 16 Aug. 2016
To get the name of the last sheet use xlsfinfo
[~,name]=xlsfinfo('file.xlsx')
last_sheet=name{end}
N=xlsread('file.xlsx',last_sheet)
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Spreadsheets finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!