I am trying to create an excel macro to take values from a set of Excel files called source and aggregate them in a file called destination. Each set of source files have the same format, in depending on the name, each file having several sheets.
Source files that start with the same number belong to the same set.
For example, with the following two sets of files:
2_A_source.xls; 2_B_source.xls; 2_C_source.xls;
3_A_source.xls; 3_B_source.xls; 3_C_source.xls; 3_D_source.xls
this macro to create two files destination, called 2_destination.xls
and 3_destination.xls, each of them cells to sum values in the set.
I attached the source file format for clarification.
Can you help me?