---
title: from xlsx
categories: |
formats
version: 0.104.0
formats: |
Parse binary Excel(.xlsx) data and create table.
usage: |
Parse binary Excel(.xlsx) data and create table.
editLink: false
contributors: false
---
<!-- This file is automatically generated. Please edit the command in https://github.com/nushell/nushell instead. -->
# `from xlsx` for [formats](/commands/categories/formats.md)
<div class='command-title'>Parse binary Excel(.xlsx) data and create table.</div>
## Signature
```> from xlsx {flags} ```
## Flags
- `--sheets, -s {list<string>}`: Only convert specified sheets
## Input/output types:
| input | output |
| ------ | ------ |
| binary | table |
## Examples
Convert binary .xlsx data to a table
```nu
> open --raw test.xlsx | from xlsx
```
Convert binary .xlsx data to a table, specifying the tables
```nu
> open --raw test.xlsx | from xlsx --sheets [Spreadsheet1]
```