How can I process a sequence of EXCEL files inside a FOR loop
Show older comments
i have n numbers of excel files like this : mydata1.xlsx , mydata2.xlsx , mydata3.xlsx and so on . Now i want to process each of the excel file iteratively in a FOR loop . This is what , i have tried so far
for i =1:n
fprintf('Enter the Excel file name \n');
m=input('');
M= xlsread(m);
.
.
.
MY codes
.
.
end
But Its not working . Kindly help me . Thankx in advance.
Accepted Answer
More Answers (0)
Categories
Find more on Spreadsheets in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!