Operators & Identifiers
Identifier
ThisItem
: Refers to the current item in a table or data context. Useful when referencing fields in the current row.CurrentUser
: Refers to the current user logged into Habitify, allowing you to access their details, such as name, email, or user-specific data.
Operators
Reference: Microsoft PowerFX - Operators & Identifiers
Type | Symbol | Description | Syntax |
---|---|---|---|
Decimal separator | . | Separator between whole and fractional parts of a number. The character depends on the language. |
|
Parentheses | ( ) | Enforces precedence order, and groups sub expressions in a larger expression |
|
Arithmetic operators | + | Addition |
|
- | Subtraction and sign |
| |
* | Multiplication |
| |
/ | Division |
| |
^ | Exponentiation |
| |
% | Percentage (equivalent to "* 1/100") |
| |
Comparison operators | = | Equal to |
|
> | Greater than |
| |
>= | Greater than or equal to |
| |
< | Less than |
| |
<= | Less than or equal to |
| |
<> | Not equal to |
| |
String concatenation operator | & | Makes multiple strings appear continuous |
|
Logical operators | && or | Logical conjunction, equivalent to the And function |
|
|| or | Logical disjunction, equivalent to the Or function |
| |
! or | Logical negation, equivalent to the Not function |
|
Last updated