How to get the name of a specified excel sheet?

5 ビュー (過去 30 日間)
Elaheh
Elaheh 2018 年 5 月 4 日
コメント済み: Joy Tonto 2020 年 4 月 13 日
Hello, Is there any way I could get the name of of a specified excel sheet? For example, sheet=2; When I use xlsfinfo, sheet names will be displayed but not in the order of occurrence in an excel file. I appreciate your help.
Thank you
  6 件のコメント
Elaheh
Elaheh 2018 年 5 月 4 日
I had to change the extension because I was not allowed to attach 5 with the extension xlsx.
thank you.
Guillaume
Guillaume 2018 年 5 月 6 日
So, what output do you get? And which version of matlab and which version of excel?
Note that matlab simply asks excel for the list of worksheets, so whatever order you get is the one returned by excel.

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

回答 (1 件)

Pruthvi G
Pruthvi G 2020 年 4 月 13 日
%%********************************************************************************
% Name : xl_xlsfinfo
% Author : Pruthvi Raj G
% Version : Version 1.0 - 2011b Compactible
% Description : Finds all the sheets in the Excel file (.xls,.xlsm,.xlsx)
% Input : File_Name with path included.
% Date : 11-Feb-2020
%
% Examples : xl_xlsfinfo('D:\Pruthvi\Test_file.xls')
%*********************************************************************************
Use the Below Lines of Code ::
sheets = xl_xlsfinfo('D:\Pruthvi\Test_file.xls')
sheets =
1×5 cell array
{'Sheet1'} {'Sheet2'} {'Sheet3'} {'Sample'} {'Data'}
  1 件のコメント
Joy Tonto
Joy Tonto 2020 年 4 月 13 日
Heyy Thanks a lot

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

カテゴリ

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