MATLAB: How to use ‘textscan’ to read data from Sheet2 of an Excel file

textscan

As said in question, want to know if textscan can be used to scan data from Sheet2 of an Excel file?
Thanks for any help.

Best Answer

Try
readtable( _______, 'DatetimeType', 'exceldatenum' );
See the documentation.
Related Question