Merge all '.xlsx' files in a folder

2 ビュー (過去 30 日間)
Mekala balaji
Mekala balaji 2016 年 2 月 26 日
I have multiple '.xlsx' files in a folder, and I want to merge them all.
my input and out folder paths are below:
sourcefolder = 'D:\OutputFolder';
destinationfolder = 'D:\mergeddata';
But I dont know how to merge them. Kindly someone help me. Sincerely,

採用された回答

Walter Roberson
Walter Roberson 2016 年 2 月 26 日
I notice that the input files have three sheets, with two of them empty. I decided that it was potentially important to merge each sheet separately, by name; otherwise the code would be much shorter.
Note: the code will fail to distinguish between sheetnames which are greater than 63 characters long (or, in some cases, even shorter.)
sourcefolder = 'D:\OutputFolder';
destinationfolder = 'D:\mergeddata';
dinfo = dir( fullfile(sourcefolder, '*.xlsx') );
numfile = length(dinfo);
input_data = struct([]);
input_sheets = struct([]);
for K = 1 : numfile
thisfile = fullfile(sourcefolder, dinfo(K).name );
[status, sheets] = xlsfinfo(thisfile);
for sn = 1 : length(sheets)
[~, ~, raw] = xlsread(thisfile, sn);
sheetname = sheets{sn};
sheet_var = genvarname(sheetname);
if ~isfield(input_data, sheet_var)
input_data.(sheet_var) = {};
input_sheets.(sheet_var) = sheetname;
end
input_data.(sheet_var) = [input_data.(sheet_var); raw]
end
end
output_file = fullfile( destinationfolder, 'merged_files.xlsx');
sheet_vars = fieldnames(input_sheets);
for sn = 1 : length(sheet_vars)
sheet_var = sheet_vars{sn};
data_to_write = input_data.(sheet_var);
sheetname = input_sheets.(sheet_var);
xlswrite( output_file, data_to_write, sheetname );
end
  5 件のコメント
Walter Roberson
Walter Roberson 2018 年 6 月 15 日
xlswrite( output_file, data_to_write.', sheetname );
Chakradhar Rao Tandule
Chakradhar Rao Tandule 2018 年 6 月 16 日
This is not i want to do so sir... i have attached the intput files and output file for your kind reference.. Please help me to get such format output file using the given inputs...

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSpreadsheets についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by