Problem accessing Excel files through xlsread
47 次查看(过去 30 天)
显示 更早的评论
Hi everyone, I'm trying to open Excel files via MATLAB using xlsread, and this is what I get:
data = xlsread('..\10 Power Curve Test\04 AEP\AEP calculations T94 T107 T149 - Final.xls',16,'C8:F51');
Error using xlsread (line 249)
Error: The server threw an exception.
I've dug down into the code and found the problem line, in OpenExcelWorkbook:
Excel.workbooks.Open(filename, 0, readOnly);
Excel is a COM.Excel_Application object.
When trying to run this line independently of the larger function, I get the following error message:
Error using Interface.000208DB_0000_0000_C000_000000000046/Open
Invoke Error, Dispatch Exception:
Source: Microsoft Excel
Description: Sorry, we couldn't find ..\10 Power Curve Test\04 AEP\AEP calculations T94 T107 T149 - Final.xlsx. Is it possible it
was moved, renamed or deleted?
Help File: xlmain11.chm
Help Context ID: 0
However, I know that the file exists, because I can open it with fopen:
fopen('..\10 Power Curve Test\04 AEP\AEP calculations T94 T107 T149 - Final.xlsx')
ans =
3
I've also tried using xlsread with other files, from within the working directory, and the same problem persists.
Can anyone help me with this? My only idea at this point is to force a Windows update and look for updates to Office and hope that fixes something.
Thanks in advance!
0 个评论
采纳的回答
XM Liu
2016-11-17
1- open the excel> file, >option, >add in, manage then select COM ADD IN, and clear everything (unchecked). everything should be cleared (unchecked). 2- restart the PC, and open the matlab. 3- perform xlsread command.
PS. For those people who use foxit pdf reader, it is potential to face this problem, so follow mentioned order.
更多回答(2 个)
Soma Ardhanareeswaran
2016-10-20
The error observed might be related to spaces in the file path. Try placing the file in another directory without any spaces and observe for the error.
Jan
2016-10-21
编辑:Jan
2016-10-21
Try to use an absolute path name instead of the '..' . Using relative paths is okay, but often a cause for confusions, because the current folder might be changed unexpectedly by a callback of a timer or a GUI element.
Look in the comments of http://de.mathworks.com/matlabcentral/fileexchange/10465-xlswrite1: 11 Feb 2015 Kevin Gaukel.
2 个评论
Allan N
2019-2-23
Did you find a solution to this problem? I, too, am having error on data = xlsread (filename) command. (I am using Win10 with xlsx file with Office 2016). I had no problem with Win7 and Office 2011, and I'm wondering if Excel 2016 does something differently, or perhaps with Win10. Please let me know if you found a solution.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Spreadsheets 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!