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

Azzi Abdelmalek
Azzi Abdelmalek 2015년 6월 7일
Can you give more details about your data in each Excell file
Ahmed Khalifa
Ahmed Khalifa 2015년 6월 7일
every excel file has one sheet with 4 columns A B C D

댓글을 달려면 로그인하십시오.

 채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2015년 6월 7일

0 개 추천

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

Ahmed Khalifa
Ahmed Khalifa 2015년 6월 7일
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.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Image Analyst
Image Analyst 2015년 6월 7일

1 개 추천

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

Ahmed Khalifa
Ahmed Khalifa 2015년 6월 7일
well, thank you first but I need it to be in matlab cause it will be asmall step in alarge program so it's just for sequence of the whole job.
Image Analyst
Image Analyst 2015년 6월 7일
I guess you didn't run my demo and notice that it is in a MATLAB m-file and is, in fact, MATLAB code. It's just as much MATLAB code as calling xlsread() or xlswrite() is. Here is a link to MATLAB documentation on actxgetrunningserver http://www.mathworks.com/help/matlab/ref/actxgetrunningserver.html?s_tid=srchtitle You see, it's a MATLAB function and you don't have to feel guilty about using it. I mean, after all, xlsread() uses it, so why can't you ?
Maxwell MacFarlane
Maxwell MacFarlane 2020년 4월 2일
I have tried using this code but all I have been able to do is create is a blank spreadsheet. Any suggestions on how to get it to read my data in?
Image Analyst
Image Analyst 2020년 4월 2일
편집: Image Analyst 2020년 4월 2일
Maxwell: It should have worked, and it did for me when I tried it. But anyway, since I was taking another look at it, I made some improvements to it. Please download the latest version, attached here.
If you still have trouble, then attach your m-file and I'll try it.
naty liber
naty liber 2020년 5월 27일
hey, there is an error saying that excel is already open but your code opens it...
Image Analyst
Image Analyst 2020년 5월 27일
I ran it and it ran fine. The message just suggests one possible error, not necessarily the exact reason. The reason is that the Excel variable no longer exists by the time you got to the line of code that called xlswrite1. Did you perhaps set a breakpoint somewhere and then type clear or clear all? Did you shutdown Excel after the breakpoint but before calling xlswrite1()? Again, it works fine for me. If it doesn't for you then run PSR (type that into the Windows search field and run the Steps Recorder) to do screen captures and upload your zip file so I can see what you did.
Brooke Beier
Brooke Beier 2020년 12월 14일
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 2020년 12월 14일
The version I use has caller, not base. I'm attaching it.

댓글을 달려면 로그인하십시오.

카테고리

질문:

2015년 6월 7일

댓글:

2020년 12월 14일

Community Treasure Hunt

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

Start Hunting!

Translated by