Access to Excel-Worksheet-Cells Property

I want to access some excel data with a loop over some rows and columns. With vba, I am used to do this with the cell-property (!). That's my attemp in matlab:
excelObject = actxserver('Excel.Application');
excelObject.Visible = 1;
oWorkbook = excelObject.Workbooks.Open('C:\abc.xls');
oWorksheet = oWorkbook.Sheets.Item(1);
oWorksheet.Activate;
% Here I want to get the address of cell B2:
disp oWorksheet.Cells(2,2).Address;
% The error Index exceeds matrix dimensions occures
It looks like matlab wants to use the Cell-Property as an array - not as a property with two arguments.
How can I access the Cells-Property? I tried the "get"-Function, but this doesn't help me.
Regards
Andreas

 채택된 답변

Friedrich
Friedrich 2013년 7월 5일

3 개 추천

Hi,
use this:
get(get(oWorksheet,'Cells',2,2),'Address')

추가 답변 (1개)

Tom
Tom 2013년 7월 5일

0 개 추천

oWorksheet.Range('B2')

댓글 수: 1

Andreas
Andreas 2013년 7월 8일
Thank you. I want to make a loop through my sheet. That's why I want to use the numeric mode.

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

카테고리

제품

질문:

2013년 7월 5일

Community Treasure Hunt

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

Start Hunting!

Translated by