xlswrite with formula in loop function

조회 수: 4 (최근 30일)
JB
JB 2017년 10월 19일
댓글: JB 2017년 10월 19일
I have a large cell (2500,3) array which I want to export as a .xls file, but I want to include a formula ('=SUM(B1:C1)') which can be used in excel, The code below is working fine but I want the "B1" and "C1" to increase by 1 for each loop ('=SUM(B1:C1)', '=SUM(B2:C2)', '=SUM(B2:C2)' etc). How can I do this??? My present loop code is:
for II = 1:length(out)
out{II,4}='=SUM(B1:C1)';
end
xlswrite('Book1.xls',out)

채택된 답변

Walter Roberson
Walter Roberson 2017년 10월 19일
out{II,4} = sprintf('=SUM(B%d:C%d)', II, II);
  댓글 수: 1
JB
JB 2017년 10월 19일
PERFECT, thanks Walter Roberson

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

추가 답변 (1개)

Fangjun Jiang
Fangjun Jiang 2017년 10월 19일
num2str(II), e.g. num2str(3)

카테고리

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