This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| license: apache-2.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import pandas as pd # Ensure xlrd and xlsxwriter are installed. Needed for working with Excel files. | |
| import os | |
| import easygui | |
| target_open_folder = easygui.diropenbox(msg="Select the folder with the Excel files to be combined.") | |
| file_list = [] | |
| for file in os.listdir(target_open_folder): | |
| file_list.append(os.path.join(target_open_folder, file)) |
NewerOlder