필터 지우기
필터 지우기

xlsread failed - Error registering event(s), Advise failed

조회 수: 2 (최근 30일)
Itachi
Itachi 2012년 7월 18일
댓글: William Jones 2016년 8월 17일
Hi guys, I get the following error when I'm trying to read from .xlsx files. please help me out.
Error registering event(s), Advise failed
Error in registerevent>addevent (line 148)
list(m+1) = handle.listener(h, eventname, {@comeventcallback, eventhandler});
Error in registerevent (line 94)
addevent(h, event, eventhandler);
Error in xlsreadCOM (line 11)
Excel.registerevent({'WorkbookActivate', @WorkbookActivateHandler});
Error in xlsread (line 230)
[numericData, textData, rawData, customOutput] = xlsreadCOM(file, sheet, range,
Excel, customFun);

답변 (2개)

Image Analyst
Image Analyst 2012년 7월 18일
Are you using an old version of MATLAB before xlsx files were around? What release do you have (the R number)? Also you need to have Excel installed to use xlsread and xlswrite - MATLAB can't read and write the files by itself. What version of Excel do you have installed?
  댓글 수: 2
Itachi
Itachi 2012년 9월 8일
I'm using MATLAB R2012a and Excel 2010. I know that it's because MATLAB open and closes Excel every time that I use these functions. But it should not happen. I've used xlsread1 and xlswrite1 from fileexchange section and it got OK.
Image Analyst
Image Analyst 2012년 9월 8일
If you're using xlsread() and you already have a file open, particularly the file you're trying to open with xlsread() you'll probably get an error. Make sure Excel is closed before you call xlsread(). You might try typing control-shift-Esc to bring up the process list (in Windows) and see if perhaps Excel is a running process even though you don't see it anywhere visible on your desktop or taskbar.

댓글을 달려면 로그인하십시오.


Ron Lu
Ron Lu 2013년 4월 10일
편집: Ron Lu 2013년 4월 10일
I have the same problem as yours, Win7 with Matlab 2012a and Excel 2010. My solution is to kill all excel processes if they are not closed properly after xlsread.
Put this code after xlsread funcion call solved my problem:
[~, computer] = system('hostname');
[~, user] = system('whoami');
[~, alltask] = system(['tasklist /S ', computer, ' /U ', user]);
excelPID = regexp(alltask, 'EXCEL.EXE\s*(\d+)\s', 'tokens');
for i = 1 : length(excelPID)
killPID = cell2mat(excelPID{i});
system(['taskkill /f /pid ', killPID]);
end
  댓글 수: 1
William Jones
William Jones 2016년 8월 17일
This is amazing, I would've never solved this problem for my excelread function. Do you have the time to explain what it does?

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Spreadsheets에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by