How to read several times similarly from EXCEL?

1 visualización (últimos 30 días)
Steven
Steven el 29 de Dic. de 2013
Comentada: Steven el 29 de Dic. de 2013
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

Respuesta aceptada

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

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by