Math

Arithmetic operations on columns

What It Does

Math lets you write arithmetic expressions using column values. Create calculated fields like "price * quantity" or "(revenue - cost) / revenue".

How to Use It

Opening the Panel

Click the + button in the toolbar or press the operation picker, then search for "Math". It's in the Transform group.

Configuration

FieldTypeRequiredDescription
ExpressionSQL expressionYesArithmetic expression using column names
OutputApply Results IntoNoWrite to existing or new column
SQL generated under the hood
SELECT *, (revenue - cost) / revenue AS margin FROM data
Try this operation →

Related Operations