Name | Description | Accepts | Returns | Alternative |
---|---|---|---|---|
Returns the first value if the condition is true; otherwise, returns the second value. | Boolean | All Data Types | ||
Returns the value that corresponds to the first true condition. | Boolean | All Data Types | ||
The boolean operator and. | Boolean | Boolean | ||
The boolean operator or. | All Data Types | Boolean | ||
Returns the opposite of a boolean value. | Boolean | Boolean | ||
Returns true if the value is empty. | All Data Types | Boolean | ||
Returns the length of the text or list value. | StringList | Number | ||
Returns the substring of the text from the start index to the end index. | String | String | ||
Returns true if the search string is present in the value. | String | Boolean | ||
Returns true if the value matches the regular expression and false otherwise. | String | Boolean | ||
Returns all matches of the regular expression as a list. | String | List | ||
Replaces the first match of the regular expression with the replacement value. | String | String | ||
Replaces all matches of the regular expression with the replacement value. | String | String | ||
Converts the text to lowercase. | String | String | ||
Converts the text to uppercase. | String | String | ||
Repeats the text a given number of times. | String | String | ||
Returns the text padded with the provided padding string at the start until the target length is reached. | String | String | ||
Returns the text padded with the provided padding string at the end until the target length is reached. | String | String | ||
Creates a hyperlink from the label text and the URL. | String | String | ||
Adds styles and colours to the text. | String | String | ||
Removes formatting styles from the text. | String | String | ||
Formats its argument as a string. | All Data Types | String | ||
Returns the sum of two numbers. | Number | Number | ||
Returns the difference of two numbers. | Number | Number | ||
Returns the product of two numbers. | Number | Number | ||
Returns the first number modulo the second number. | Number | Number | ||
Returns the result of a base number raised to an exponent power. | Number | Number | ||
Returns the quotient of two numbers. | Number | Number | ||
Returns the smallest number of the arguments. | NumberList | Number | ||
Returns the largest number of the arguments. | NumberList | Number | ||
Returns the sum of its arguments. | NumberList | Number | ||
Returns the middle value of its arguments. | ListNumber | Number | ||
Returns the arithmetic average of its arguments. | ListNumber | Number | ||
Returns the absolute value of the number. | Number | Number | ||
Returns the value of a number rounded to the nearest integer. | Number | Number | ||
Returns the smallest integer greater than or equal to the number. | Number | Number | ||
Returns the largest integer less than or equal to the number. | Number | Number | ||
Returns the positive square root of the number. | Number | Number | ||
Returns the cube root of the number. | Number | Number | ||
Returns e^x | Number | Number | ||
Returns the natural logarithm of the number. | Number | Number | ||
Returns the base 10 logarithm of the number. | Number | Number | ||
Returns the base 2 logarithm of the number. | Number | Number | ||
Returns 1 if the number is positive, -1 if it is negative, and 0 if it is zero. | Number | Number | ||
Returns the ratio of a circle's circumference to its diameter. | Number | |||
Returns the base of the natural logarithm. | Number | |||
Parses a number from text. | StringDate | Number | ||
Returns the current date and time. | Date | |||
Returns the current date without the time. | Date | |||
Returns the minute of the date (0-59). | Date | Number | ||
Returns the hour of the date (0-23). | Date | Number | ||
Returns the day of the week of the date, between 1 (Monday) and 7 (Sunday). | Date | Number | ||
Returns the day of the month from the date (1-31). | Date | Number | ||
Returns the ISO week of the year of the date (1-53). | Date | Number | ||
Returns the month of the date (1-12). | Date | Number | ||
Returns the year of the date. | Date | Number | ||
Adds time to the date. | Date | Date | ||
Subtracts time from the date. | Date | Date | ||
Returns the difference between two dates. | Date | Number | ||
Returns a date range constructed from the start and end dates. | Date | Date | ||
Returns the start of the date range. | Date | Date | ||
Returns the end of the date range. | Date | Date | ||
Returns the current Unix timestamp. | Date | Number | ||
Returns the date from the given Unix timestamp. | Number | Date | ||
Formats the date using a custom format string. | Date | String | ||
Returns the date parsed according to the ISO 8601 standard. | String | Date | ||
Returns the name of a person. | Person | String | ||
Returns the email address of a person. | Person | String | ||
Returns the value at the specified index in a list. | List | All Data Types | ||
Returns the first item in the list. | List | All Data Types | ||
Returns the last item in the list. | List | All Data Types | ||
Returns the items of the list from the provided start index to the end index. | List | List | ||
Returns the concatenation of multiple lists. | List | List | ||
Returns the list in sorted order. | List | List | ||
Returns the reversed list. | List | List | ||
Returns the values of the list with the joiner placed between each of the values. | List | String | ||
Returns the list of values created by splitting a text by a separator. | String | List | ||
Returns the list of unique values in the input list. | List | List | ||
Returns true if the list contains the specified value, and false otherwise. | List | Boolean | ||
Returns the first element in the list for which the condition returns true. | List | List | ||
Returns the index of the first item in the list for which the condition evaluates to true. | List | Number | ||
Returns the values in the list for which the condition is true. | List | List | ||
Returns true if any item in the list satisfies the given condition, and false otherwise. | List | Boolean | ||
Returns true if every item in the list satisfies the given condition, and false otherwise. | List | Boolean | ||
Returns the list populated with the results of calling the expression on every item in the input list. | List | List | ||
Flattens a list of lists into a single list. | List | List | ||
Returns the id of the page. | Page | String | ||
Returns true if both values are equal and false otherwise. | All Data Types | Boolean | ||
Returns false if both values are equal and true otherwise. | All Data Types | Boolean | ||
Assigns a value to a variable and evaluates the expression using that variable. | All Data Types | All Data Types | ||
Assigns values to multiple variables and evaluates the expression using those variables. | All Data Types | All Data Types |
Name | Description | Accepts | Returns | Alternative |
---|---|---|---|---|
Adds two values together. | StringNumber | StringNumber | ||
Subtracts two numbers. | Number | Number | ||
Multiplies two numbers. | Number | Number | ||
Returns the first number modulo the second number. | Number | Number | ||
Returns the result of a base number raised to an exponent power. | Number | Number | ||
Divides two numbers. | Number | Number | ||
Checks if two values are equal. | All Data Types | Boolean | ||
Checks if two values are not equal. | All Data Types | Boolean | ||
Checks if the first value is greater than the second. | StringNumberBooleanDate | Boolean | ||
Checks if the first value is greater than or equal to the second. | StringNumberBooleanDate | Boolean | ||
Checks if the first value is less than the second. | StringNumberBooleanDate | Boolean | ||
Checks if the first value is less than or equal to the second. | StringNumberBooleanDate | Boolean | ||
The boolean operator and. | Boolean | Boolean | ||
The boolean operator or. | Boolean | Boolean | ||
Returns the opposite of a boolean value. | Boolean | Boolean | ||
The ternary operator. | Boolean | All Data Types |