Table of Contents

Eaze Calculations

Tables support cell calculations written in Eaze — Profitbase InVision's formula language for data grids. The syntax and function set are identical to Worksheets.

A calculation formula has this shape:

@<column>[<row-filter>] = <expression>;
@Amount[] = Price * Qty;
@Amount[ProductID == "XP-5000"] = @Price[ProductID == "XP-5000"] * @Qty[ProductID == "XP-5000"];

Multiple statements run in order. Each formula targets one or more cells by column name and an optional row predicate.

Full Eaze reference

All language details, operators, functions, and Workbook context are documented in the shared Eaze reference:

Extensibility