Writing Formulas Yourself
Start any cell entry with= to begin a formula. As you type:
- The Formula Bar (top of the grid, marked
fx) mirrors what you’re typing in the active cell - Any cell references or ranges inside the formula (e.g.
A1,B2:B10) are color-coded, and the matching ranges are highlighted directly on the grid so you can see what you’re referencing - Autocomplete — typing a partial function name (e.g.
SU) shows a matching-functions dropdown (SUM,SUMIF,SUMIFS, …); use arrow keys +Enter/Tabto accept - Parameter hints — once you open a function’s parentheses (e.g.
=VLOOKUP(), a hint box shows that function’s parameters and highlights which one you’re currently typing
Function Categories
Math
Math
SUM, PRODUCT, ROUND, trig functions, logs, etc.
Statistical
Statistical
AVERAGE, MEDIAN, STDEV, CORREL, FORECAST.LINEAR, PERCENTILE, RANK, etc.
Logical
Logical
IF, IFS, AND, OR, SWITCH, IFERROR, IFNA, etc.
Information
Information
ISBLANK, ISNUMBER, ISERROR, TYPE, etc.
Text
Text
LEFT/RIGHT/MID, CONCAT, TEXTJOIN, SPLIT, SUBSTITUTE, TEXT, TRIM, etc.
Date & Time
Date & Time
DATE, TODAY, NOW, NETWORKDAYS, WORKDAY, DATEDIF, EDATE, EOMONTH, etc.
Financial
Financial
PMT, FV, PV, NPV, IRR, XIRR, SLN/DDB/VDB, bond/security functions, etc.
GST
GST
GST, ADDGST, REMOVEGST, CGST, SGST, IGST, GSTBREAKUP, etc.
Engineering
Engineering
Base conversions, bitwise operations, complex numbers, CONVERT, etc.
Lookup & Reference
Lookup & Reference
VLOOKUP, HLOOKUP, XLOOKUP, INDEX, MATCH, INDIRECT, OFFSET, etc.
Array
Array
ARRAYFORMULA, FILTER, SORT, UNIQUE, SEQUENCE, MMULT, TOROW/TOCOL, etc.
Database
Database
DSUM, DAVERAGE, DCOUNT, DGET, DMAX/DMIN, etc.
Lambda
Lambda
LAMBDA, MAP, REDUCE, BYROW, BYCOL, SCAN, MAKEARRAY.
Magic Formula (AI-Generated Formulas)
Magic Formula lets you describe a calculation in plain English (or by voice) right next to a cell, and generates the actual formula for you — with a live preview before you commit to it.Opening Magic Formula
Right-click a cell and choose Magic Formula from the context menu. A small prompt box opens anchored to that cell.Column vs. Row Mode
- Column mode (default)
- Row mode
Use when your data runs above the active cell. Magic Formula automatically detects the contiguous data block directly above the cell (skipping over a header row if one is detected) and targets that range.
Describing What You Want
Type a request like:- “sum of cells above”
- “average”
- “total of this row”
- “profit margin” (Revenue/Profit columns detected from context)
Reviewing & Inserting
After you submit, Magic Formula shows a confirmation view with:- The exact formula it generated (e.g.
=SUM(C2:C9)) - A live preview of what that formula would evaluate to right now, so you can sanity-check it before inserting
- Edit — go back and adjust your original prompt
- Insert Formula — commit it into the active cell
Behind the scenes, Magic Formula follows a few built-in conventions so results are predictable:
- Percentages, margins, rates, and ratios are always multiplied by 100 and rounded to 2 decimals (e.g. a profit-margin request becomes
=ROUND((P2/N2)*100, 2), not a raw0.24ratio). - Any division/decimal result is wrapped in
ROUND(..., 2)for a clean output. - It prefers the automatically detected data range above or beside the cell over guessing a range from scratch.
Like other AI features, Magic Formula is branded as TablixAI and won’t reference the underlying model provider if asked. Always check the live preview before inserting, especially for financial calculations.

