Actxserver reading only first file

조회 수: 1 (최근 30일)
Ghenji
Ghenji 2018년 2월 15일
댓글: Ghenji 2018년 2월 20일
working with this code-
get_files = cellstr(get(handles.listboxfiles,'String'));
len = length(get_files);
for i = 1 : len
excel = actxserver('Excel.Application');
workbook = excel.Workbooks.Open(get_files{i});
.....
.....
.....
.....
.....
.....
end
Am not getting any error but Actxserver reads only first file from list. Listboxfiles contains name of the files with pathname. Something like this "C:\Users\ERTW\Documents\Excel_file\ARAN1.xlsm". Is something missing with excel.Workbooks.Open?
  댓글 수: 1
Guillaume
Guillaume 2018년 2월 15일
편집: Guillaume 2018년 2월 15일
Note that your question has nothing to do with actxserver. actxserver is used to connect matlab to any COM/ActiveX component. It can be excel but it can be anything else such as other Office programs (Word, Access, Outlook, etc.), matlab itself, or anything that support scripting.
actxserver does not read files.

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

채택된 답변

Guillaume
Guillaume 2018년 2월 15일
Have you verified that get_files actually contains more than one element. Is your listbox multiselect?
There is nothing wrong with your Workbooks.Open call and you'd get an error if excel failed to open the workbook. Of course, you overwrite the workbook variable on each step of the loop, so if you expected an array of workbooks after the loop is finished, you're not going to get one.
Note that your code starts a new instance of excel at each step of the loop. That's very inefficient. You would be better off with:
excel = actxserver('Excel.Application'); %start excel
%excel.Visible = true; %uncomment for debugging
for fidx = 1:numel(get_files)
workbook = excel.Workbooks.Open(get_files{i});
%...
workbook.Close();
end
excel.Quit(); %Don't forget to quit each excel instance or they'll be left running in the background invisible
The best way for you to figure out what is going on is to make excel visible and see how your code affects the excel window.
  댓글 수: 8
Guillaume
Guillaume 2018년 2월 20일
편집: Guillaume 2018년 2월 20일
Oh, yes sorry, it needs to be a vertcat instead of horzcat (aka []) since it's a cell array of column vectors
wanted_sheets = unique(vertcat(wanted_sheets{:}));
Ghenji
Ghenji 2018년 2월 20일
And that's what was missing. Thanks lot Guillaume once again.

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

추가 답변 (0개)

카테고리

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