Problem accessing Excel files through xlsread

77 vues (au cours des 30 derniers jours)
Ari Bronstein
Ari Bronstein le 11 Oct 2016
Commenté : Allan N le 23 Fév 2019
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!

Réponse acceptée

XM Liu
XM Liu le 17 Nov 2016
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.
  1 commentaire
Ari Bronstein
Ari Bronstein le 17 Nov 2016
This is it! I didn't uncheck everything (we have 2 Pi Datalink Add-ins in our office), but I unchecked the FoxitReader PDF Creator Add-in, and it works now!

Connectez-vous pour commenter.

Plus de réponses (2)

Soma Ardhanareeswaran
Soma Ardhanareeswaran le 20 Oct 2016
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.
  1 commentaire
Ari Bronstein
Ari Bronstein le 21 Oct 2016
Thank you for the suggestion. I had high hopes, but no luck; same error.

Connectez-vous pour commenter.


Jan
Jan le 21 Oct 2016
Modifié(e) : Jan le 21 Oct 2016
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 commentaires
Ari Bronstein
Ari Bronstein le 21 Oct 2016
Thank you for the suggestion, but I really don't think the path to the file is the problem. As mentioned before, fopen works fine.
data = xlsread('c:\Users\abronstein\Downloads\AEPFinal.xlsx',16,'C8:F51');
Error using xlsread (line 249)
Error: The server threw an exception.
Allan N
Allan N le 23 Fév 2019
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.

Connectez-vous pour commenter.

Community Treasure Hunt

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

Start Hunting!

Translated by