"Error using xlsread, Worksheet 'Sheet1' not found. " I have this eror and I don't know why. I have the sheet and it's in the folder which I have my script and functions.
18 views (last 30 days)
Show older comments
I attached the eror in Png
Error using xlsread (line 247) Worksheet 'Sheet1' not found.
Error in load_the_prediction_data (line 15) [~,Times]=xlsread(['dee1_' char(Current_time_stamp) '.xlsx'],'Sheet1','A:A');
3 Comments
杨
on 22 Jul 2024
Moved: Fangjun Jiang
on 22 Jul 2024
The same to me,how the author solve this problem?
I have tried to read the <ExcelFileName> separately, and it was OK.
This indicates that the <ExcelFileName - sheet1> in this folder can be read, but it cannot be successfully read when <main .m> file is running.
Answers (1)
Fangjun Jiang
on 8 Feb 2018
You have the Excel file in that folder but do you have a sheet named "Sheet1" in that Excel file?
8 Comments
Walter Roberson
on 9 Feb 2018
At the command line command
dbstop if error
and run the program. When it stops, use the command dbup as many times as needed until it tells you that you are in the workspace of load_the_prediction_data
At that point run the xlsinfo command I showed.
Fangjun Jiang
on 9 Feb 2018
Your showed dee1.xlsx but your code was looking for dee1_***.xlsx. So it is not the right file.
Just locate that file, run xlsread(ExcelFileName,'Sheet1','A:A') to see what happens. This command will run without error, return an empty array with just a new dummy empty Excel file.
See Also
Categories
Find more on Data Import from MATLAB in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!