How do I import a number of excel files at once?
조회 수: 1 (최근 30일)
이전 댓글 표시
I have wrote this loop to import a number of excel files at once and it works:
numfiles = 54; % number of excel files mydata=cell(numfiles,1); % defining size of mydata
for k = 7:numfiles % loop to import mutliple excel files
myfilename = sprintf('Trial %d', k); % define file name
mydata{k} = xlsread(myfilename); % import files into mydata
end
How do I edit this to only import columns 1 to 5 in each excel file??
댓글 수: 0
채택된 답변
Mischa Kim
2014년 4월 21일
편집: Mischa Kim
2014년 4월 21일
Use
xlsread(myfilename,'A:E')
or any other range of data columns.
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Spreadsheets에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!