Available functions are: max, absolute, length, and date. Place functions on the right-hand side of the expression. For example:
abs(3)=max(3,5)
This example is not valid, because the function abs (absolute) is to the left of the equal sign (=).
Another example:
5=max(5,5)
This example is valid, because the function, max, is to the right of the equal sign (=).
Function | Code | What it Does | Arguments |
---|---|---|---|
Max | max |
Compares two numbers to see which is greater. | Requires two numbers separated with a comma: Number,Number. |
Absolute | abs |
Finds the absolute value of a number. | Requires one number only. |
Length | length |
Finds the number of characters in a string. | Enter the string within single quotes. |
Date | date |
Determines the current system date. | Takes no arguments. |
Datetime | datetime |
Determines the current system date and time. | Takes no arguments. |