View Source XlsxReader.Cell (xlsx_reader v0.8.7)

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.

Summary

Types

t()

XLSX cell data

Types

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

XLSX cell data