Comment on page
Getting started
Work with classic spreadsheet logic - math, references, and point and click manipulation for quick data analysis.
Get started with formulas the same way as Python. Click or enter
=
on a cell and select formulas. This will open the formulas editor in your browser. 
Unlike what you may be used to, Quadratic formulas are multi-line to encourage readable and re-usable formula structures. E.g. the following formula that is an example of the multi-line formula formatting allowed in Quadratic's formula editor:
IF( Z0 > 10,
IF( Z1 > 10,
IF (Z2 > 10,
AVERAGE(Z0:Z2),
"Invalid Data",
),
"Invalid Data",
),
"Invalid Data",
)
Last modified 15d ago