Effacer les filtres
Effacer les filtres

Combining excel files in a single file

2 vues (au cours des 30 derniers jours)
manish sharma
manish sharma le 4 Fév 2013
Hey,
I have several files by the name try_1, try_2,.....try_1000.xlsx (which all have a column vector stored in it)
How can I combine them in a single xlsx file (that will have a matrix containing 1000 columns of all those files)?
Any help in this regard will be greatly appreciated.
Thanks

Réponse acceptée

Cedric
Cedric le 4 Fév 2013
You could do something like that (not tested):
nRows = .. you define it.
nCols = 1000 ;
buffer = zeros(nRows, nCols) ;
for ii = 1 : 1000
buffer(:,ii) = xlsread(sprintf('try_%d.xlsx', ii)) ;
end
xlswrite('allTries.xlsx', buffer) ;
  1 commentaire
Rajendra Shrestha
Rajendra Shrestha le 12 Oct 2020
It works well. Thanks..

Connectez-vous pour commenter.

Plus de réponses (1)

Jose Jeremias Caballero
Jose Jeremias Caballero le 4 Fév 2013
Modifié(e) : Jose Jeremias Caballero le 4 Fév 2013
list=dir([pwd,'/try_*.xlsx']);
for i=1:length(list);
A(:,i)=xlsread(list(i).name);
end
xlswrite('TRYS.xlsx',A)
Both excel files and this code must be in the same folder to work. You can also more generic, ie Excel files can be in any folder, and for that you use the command uigetdir ()
Tanto los archivos excel y este código deben de estar en una misma carpeta para funcione. También puede hacer mas genérico, es decir los archivos Excel pueden estar en cualquier carpeta, y para eso se usa el comando uigetdir()

Community Treasure Hunt

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

Start Hunting!

Translated by