# `XlsxReader.Cell`
[🔗](https://github.com/xavier/xlsx_reader/blob/main/lib/xlsx_reader/cell.ex#L1)

Cell structure.

This structure contains the information of a cell in a sheet.

- `value` - The value of the cell
- `formula` - The formula used in the cell, if any
- `ref` - The cell reference, like 'A1', 'B2', etc.

This structure is used when the `cell_data_format` option is set to `:cell`.

# `t`

```elixir
@type t() :: %XlsxReader.Cell{
  formula: String.t() | nil,
  ref: String.t(),
  value: term()
}
```

XLSX cell data

---

*Consult [api-reference.md](api-reference.md) for complete listing*
