How to read several times similarly from EXCEL?

1 visualizzazione (ultimi 30 giorni)
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

Risposta accettata

Azzi Abdelmalek
Azzi Abdelmalek il 29 Dic 2013
Modificato: Azzi Abdelmalek il 29 Dic 2013
for k=1:100
sheet= sprintf('A%d',k)
E{k}= xlsread('filename', sheet)
end

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by