How to read the LAST sheet in excel

2 ビュー (過去 30 日間)
Jake
Jake 2016 年 8 月 16 日
コメント済み: Jake 2016 年 8 月 17 日
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);

採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2016 年 8 月 16 日
編集済み: Azzi Abdelmalek 2016 年 8 月 16 日
To get the name of the last sheet use xlsfinfo
[~,name]=xlsfinfo('file.xlsx')
last_sheet=name{end}
N=xlsread('file.xlsx',last_sheet)
  1 件のコメント
Jake
Jake 2016 年 8 月 17 日
Thanks Azzi! That works perfect!!!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSpreadsheets についてさらに検索

タグ

製品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by