HI ALl,
We want to read n number of excel files from the provided folder.. All files have few columns same and once column content is different in each file.
Now we have to read all these files and create a single file with multiple columns.
e.g
| File_1 | | | | | File_2 | | | | | File_n | | | |
| | Column1 | Column2 | column3 | | | Column1 | Column2 | column3 | | | Column1 | Column2 | column3 |
| | 1 | a | 111 | | | 1 | a | 222 | | | 1 | a | 456 |
| | 2 | b | 112 | | | 2 | b | 223 | | | 2 | b | 457 |
| | 3 | c | 113 | | | 3 | c | 224 | | | 3 | c | 458 |
| | 4 | d | 114 | | | 4 | d | 225 | | | 4 | d | 459 |
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
| Output | | | | | | | | | | | | | |
| | Column1 | Column2 | column_3_1 | column_3_2 | column_3_3 | | | | | | | | |
| | 1 | a | 111 | 222 | 456 | | | | | | | | |
| | 2 | b | 112 | 223 | 457 | | | | | | | | |
| | 3 | c | 113 | 224 | 458 | | | | | | | | |
| | 4 | d | 114 | 225 | 459 | | | | | | | | |