In-cell SQL
DuckDB runs in the browser sandbox; results spill like any other Excel array.
formulaDB is an Excel add-in that runs DuckDB in the browser, so SQL works on remote or local files with no upload and no server.
Download the Parquet file, load it into Python or Tableau, shape it, then re-share the result with finance — every time the question changes.
One =DB.QUERY formula lives in the workbook and refreshes
with Excel's recalc. The query is the document.
DuckDB runs in the browser sandbox; results spill like any other Excel array.
point at an https:// Parquet URL, or pick a .parquet / .csv from your machine via the task pane.
bind each source to a SQL alias with =DB.SOURCE, then join them in one query.
local files never leave the browser session; remote files are fetched directly browser-to-source.
A cell calls the =DB.QUERY custom function. The query runs in
DuckDB-WASM inside the browser, which reads the Parquet source — a remote
URL or a local file you picked — and spills the result straight back into
the sheet. Nothing round-trips through a formulaDB server.