An open API service indexing awesome lists of open source software.

https://github.com/schiste/excel-merger-macos

A small local Python script that merge two Excel together with a very light interface to pick the two files to merge.
https://github.com/schiste/excel-merger-macos

Last synced: 6 days ago
JSON representation

A small local Python script that merge two Excel together with a very light interface to pick the two files to merge.

Awesome Lists containing this project

README

          

# Excel Sheet Merger

A simple Python tool with a file dialog interface to merge all sheets from two `.xlsx` files into a single workbook.

## Features

- Select two Excel files via UI
- Copies all sheets from both files into one output
- Automatically renames sheets to avoid name collisions
- Outputs a new `merged.xlsx` file
- Console logs for progress visibility

## Requirements

- Python 3.7+
- Packages:
- `pandas`
- `openpyxl`
- `tkinter` (pre-installed on macOS)

Install required packages:

```bash
pip install pandas openpyxl