Skip to main content

πŸ“Š Tables β€” quick start

Tables is the spreadsheet: a sparse grid engine (tables-core) with IronCalc as the formula engine. Install it first β€” see the Office Suite overview β€” then come back here.

Create or open a spreadsheet​

  • New: app.new-document, or open a new tab from the header bar.
  • Open: app.open-file accepts .xlsx, .xls, .ods, and .csv.
  • Save: app.save-file (overwrite) / app.save-file-as (pick a new name and format) β€” same four formats as open.

Formulas​

Type directly into the active cell, and start with = β€” there's no separate formula bar, the cell itself is the input:

=SUM(A1:A5)
=AVERAGE(B2:B10)
=COUNT(C:C)

IronCalc resolves references and recalculates the sheet live. The status bar at the bottom shows Sum/Average/Count for the selection. You don't need a formula at all β€” select a range and read it straight off the bar.

Cells, rows, and columns​

WhatAction
Format cells (number format, borders, alignment)app.format-cells
Cycle number format / cell border on the selectionapp.cycle-number-format, app.cycle-cell-border
Merge cellsapp.merge-cells
Hide / unhide rows or columnsapp.hide-selected-rows, app.hide-selected-cols, app.unhide-all-rows, app.unhide-all-cols
Filter by column / clear filterapp.filter-by-column, app.clear-filter
Conditional formattingapp.conditional-format
Named rangesapp.define-name
Jump to a cellapp.goto-cell
Insert a chartapp.insert-chart
Set / clear the print areaapp.set-print-area, app.clear-print-area

All of the above are also in the command palette (Ctrl+K) with their shortcuts listed β€” or press Ctrl+? for the full overlay.

Export to PDF​

Ctrl+K β†’ "Export as PDF…" (app.export-pdf) β€” a print-oriented export distinct from a save to .xlsx/.ods/.csv above; it respects the print area if you've set one.

What's next​