To all:
The solution is actually buried in the Help menu.
Go to User's Guide/Create and Use Formulas/About Formulas. Then scroll down and find 'Commands'. Hit the + button to expand this (see below).

Keep scrolling down until you find the functions separated by the following categories: Numerical Functions, Logical Functions, and Text Functions. All of the functions in 'Expression Builder' are explained here.
NUMERICAL FUNCTIONS
ABS(x)
Returns the absolute value of x.
ACOS(x)
Returns the arccosine (inverse cosine) of x, in radians.
ASIN(x)
Returns the arcsine (inverse sine) of x, in radians.
ATAN(x)
Returns the arctangent (inverse tangent) of x, in radians.
COS(x)
Returns the cosine value of x, where x is an angle measured in radians.
EXP(x)
Returns e raised to the power of x. The constant e is taken as 2.718282
CEILING(x, number_of_decimal_places)
Rounds up x to the specified number of decimal places. For example, CEILING(8.546, 1) is equal to 8.6.
FLOOR (x, number_of_decimal_places)
Rounds down x to the specified number of decimal places. For example, FLOOR(8.546, 1) is equal to 8.5.
INT(x)
Rounds down x to the integer. For example, INT(2.97) is equal to 2. For negative values, x the return value is zero.
LN(x)
Returns the natural logarithm of x.
MAX(x1, x2,...)
Returns the biggest number. The function can take up to 20 arguments.
MIN( x1, x2,...)
Returns the smallest number. The function can take up to 20 arguments.
MOD(x1, x2)
Returns the remainder of the integer division x1/x2. Both arguments must be integers.
PI()
Returns the value of the constant PI (3.141592653589....)
SIN(x)
Returns the sine value of x, where x is an angle measured in radians.
SQRT(x)
Returns the square root of x.
TAN(x)
Returns the tangent value of x, where x is an angle measured in radians.
TEXT(x, format)
Converts x to a text, formatted with leading zeros and decimal places as specified in format argument. The format argument is a text like “0.00” or “000.00”, and so on. For example, TEXT(5.1246,”000.00”) evaluates to “005.12”.
DIMSTYLEANG(x, style)
Converts x to the angular data format. The style value is a valid dimstyle name existing in the current drawing. The text is formatted by using the dimstyle setting. The result text can contain other MTEXT formatting sequences (color, font, text size).
DIMSTYLELIN(x, style)
Converts x to a linear value. The style value is a valid dimstyle name existing in the current drawing.
LOGICAL FUNCTIONS
AND(logical_expression1, logical_expression2,...)
Returns FALSE if at least one of the arguments is FALSE. Otherwise returns TRUE.
OR(logical_expression1, logical_expression2,...)
Returns TRUE if at least one of the arguments is TRUE. Otherwise returns FALSE.
NOT(logical_expression)
Returns negation of the logical_expression argument.
CHOOSE(index,value1,value2,...)
Returns value corresponding to the index. Index must be an integer value.
FALSE()
Returns logical FALSE value.
IF(logical_expression,value_true, value_false)
Returns value_true, when the result of the logical_expression is TRUE, or value_false when the result of the logical_expression is FALSE.
ISBLANK(x)
Returns TRUE if x contains only invisible characters or spaces.
TRUE()
Returns logical TRUE value.
GT(x1,x2)
Returns TRUE if x1 is greater than x2. Otherwise returns FALSE.
GTE(x1,x2)
Returns TRUE if x1 is equal to or greater than x2 . Otherwise returns FALSE.
EQUAL(x1,x2)
Returns TRUE if x1 is equal to x2. Otherwise returns FALSE.
LTE(x1,x2)
Returns TRUE if x1 is equal to or less than x2. Otherwise returns FALSE.
LT(x1,x2)
Returns TRUE if x1 is less than x2 . Otherwise returns FALSE.
TEXT FUNCTIONS
FIND(find_text, within_text, start_index)
Locates the argument find_text in the argument within_text and returns the starting position of find_text in within_text. The start_index argument specifies the character at which the search starts. If find_text is not found, the function returns -1.
LEFT(text, num_chars)
Returns the first num_chars characters of the argument text.
MID( text, start_at, num_chars)
Returns num_chars characters from the argument text, starting from the position start_at.
RIGHT( text, num_chars)
Returns the last num_chars characters of the argument text.
LEN(text)
Returns the number of characters (length) of the argument text.
LOWER(text)
Returns the argument text, converted completely to lower case.
UPPER(text)
Returns the argument text, converted completely to upper case letters.
REPLACE(original_text,start_position,num_chars,inserted_string)
Returns a text string created by way of replacing num_chars characters in original_text, with inserted_string, starting at start_postion.
TRIM(text)
Returns a text string with all leading and trailing spaces from the argument text removed.