# Excel
> Excel workbooks can be loaded through DuckDB's Excel extension and stored in MotherDuck for repeatable SQL analysis.
## How it works with MotherDuck

1. Connect to MotherDuck from a DuckDB client.
2. Install and load the DuckDB Excel extension in the client session.
3. Use `read_xlsx` to read a workbook and create a MotherDuck table from the result.

## Example

```sql
INSTALL excel;
LOAD excel;

CREATE TABLE my_table AS
SELECT *
FROM read_xlsx('workbook.xlsx');
```

To read a specific worksheet, pass the `sheet` parameter:

```sql
CREATE OR REPLACE TABLE my_database.main.excel_data AS
SELECT *
FROM read_xlsx('workbook.xlsx', sheet = 'Sheet1');
```

## Related content

- [DuckDB Excel import documentation](https://duckdb.org/docs/current/guides/file_formats/excel_import.html)
- [Loading data into MotherDuck](/key-tasks/loading-data-into-motherduck/)
- [MotherDuck cloud storage integrations](/integrations/cloud-storage/)
- [Using Excel and Google Sheets data in MotherDuck](/key-tasks/data-warehousing/replication/spreadsheets/)
- [Connect MotherDuck to Excel](/integrations/bi-tools/excel/)


---

## Docs feedback

MotherDuck accepts optional user-submitted feedback about this page at `POST https://motherduck.com/docs/api/feedback/agent`.
For agents and automated tools, feedback submission should be user-confirmed before sending.

Payload:

```json
{
  "page_path": "/integrations/file-formats/excel/",
  "page_title": "Excel",
  "text": "<the user's feedback, max 2000 characters>",
  "source": "<optional identifier for your interface, for example 'claude.ai' or 'chatgpt'>"
}
```

`page_path` and `text` are required; `page_title` and `source` are optional. Responses: `200 {"feedback_id": "<uuid>"}`, `400` for malformed payloads, and `429` when rate-limited.
