reading multiple excel files

19 vues (au cours des 30 derniers jours)
Ahmed Khalifa
Ahmed Khalifa le 7 Juin 2015
Commenté : Image Analyst le 14 Déc 2020
I have afolder with 150 excel file and I want to read all of them one after another and save them in last in another excel sheet
  2 commentaires
Azzi Abdelmalek
Azzi Abdelmalek le 7 Juin 2015
Can you give more details about your data in each Excell file
Ahmed Khalifa
Ahmed Khalifa le 7 Juin 2015
every excel file has one sheet with 4 columns A B C D

Connectez-vous pour commenter.

Réponse acceptée

Azzi Abdelmalek
Azzi Abdelmalek le 7 Juin 2015
folder='E:\fold1'
d=dir(folder)
e={d.name}
f=e(~cellfun(@isempty,regexp(e,'.+(?=\.xlsx)','match')))
for k=1:numel(f)-1
data{k,1}=xlsread(f{k})
end
M=cell2mat(data)
xlswrite('new_file',M)
  1 commentaire
Ahmed Khalifa
Ahmed Khalifa le 7 Juin 2015
Thanks soooo much alittle nother question ,sorry if i have many excel files with 11 columns for every one and I want to read only column 5,6,7 and write them for all files in only one single file.

Connectez-vous pour commenter.

Plus de réponses (1)

Image Analyst
Image Analyst le 7 Juin 2015
Don't use xlsread() for this unless you're prepared to wait a very long time. If you have Windows, you can use ActiveX and get this done in a few seconds. With xlsread(), each time you call it, it has to launch Excel, open your workbook, haul over the data (probably using ActiveX), and finally shut down Excel. With ActiveX, you launch Excel just once, and shut it down just once, so it will be about 150 times faster for 150 workbooks. I attach a demo on how to read and write Excel files with ActiveX. If I have more than 2 files, I never use xlsread or xlswrite - I use ActiveX. If I want more precise control over formatting (decimal places, alignment, coloring, borders, etc.) I use ActiveX, or use a template. It's not hard to learn so don't be afraid - it's just like any other object oriented programming you're used to.
  8 commentaires
Brooke Beier
Brooke Beier le 14 Déc 2020
I got a similar warning dialog. Your version of xlswrite1.m may have "Excel=evalin('base','Excel');" by default, but the demo needs "Excel = evalin('caller', 'Excel');".
The difference between 'base' and 'caller' makes the demo run for me.
Image Analyst
Image Analyst le 14 Déc 2020
The version I use has caller, not base. I'm attaching it.

Connectez-vous pour commenter.

Community Treasure Hunt

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

Start Hunting!

Translated by