---
title: Operators
url: https://www.tines.com/docs/formulas/operators/
updated: 2024-08-01T09:48:30+00:00
---

*[tines.com](https://www.tines.com/llms.txt) › [Docs](https://www.tines.com/llms.txt) › [Formulas](https://www.tines.com/llm/docs/formulas.md)*

# Operators

*[View on tines.com](https://www.tines.com/docs/formulas/operators/)*

#### `a = b`

'Equal to' comparison. Returns `TRUE` or `FALSE`

#### `a != b`

'Not equal to' comparison. Returns `TRUE` or `FALSE`

#### `a > b`

'Greater than' comparison. Returns `TRUE` or `FALSE`

#### `a >= b`

'Greater than or equal to' comparison. Returns `TRUE` or `FALSE`

#### `a < b`

'Less than' comparison. Returns `TRUE` or `FALSE`

#### `a <= b`

'Less than or equal to' comparison. Returns `TRUE` or `FALSE`

#### `a && b` (alternatively `a AND b`)

'Logical and' comparison. Returns `TRUE` or `FALSE`

#### `a || b` (alternatively `a OR b`)

'Logical or' comparison. Returns `TRUE` or `FALSE`

#### `a * b`

Multiplication. Returns product of `a` and `b`

#### `a / b`

Division. Returns `a` divided by `b`

#### `a + b`

Addition. Returns sum of `a` and `b`

#### `a - b`

Subtraction. Returns `a` minus `b`

#### `a & b`

Concatenation. Returns a single text value, the text from `a` followed by the text from `b`

#### `func1() |> func2(%)`

Pipeline operator. Allows you to avoid nesting of function calls. The output of the function on the left is available as `%` in the right hand side.
