How to read several times similarly from EXCEL?
1 view (last 30 days)
Show older comments
How can we read data from Excel for similar sheet names and even file names, I mean in a loop?
for example, we want to read data from sheets A1,A2,...A100 from an Excel file.
Can we do it in a loop? I couldn't!
Things like this do not work:
for i =1:100
sheet= 'A(i)'
E1 = xlsread('filename', sheet,'range')
or
sheet= 'Ai'
sheet= 'A% i'
How can we do so?
Thanks
Steven
0 Comments
Accepted Answer
Azzi Abdelmalek
on 29 Dec 2013
Edited: Azzi Abdelmalek
on 29 Dec 2013
for k=1:100
sheet= sprintf('A%d',k)
E{k}= xlsread('filename', sheet)
end
More Answers (0)
See Also
Categories
Find more on Spreadsheets in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!