The formulatokencount( function returns a count of the number of tokens in a formula.
Parameters
This function has one parameter:formula – is the formula to be analyzed. If the formula is specified inline in the function itself, it must be quoted (see Quotes). Otherwise, you can pre-store the formula in a field or variable.
Description
The function a count of the number of tokens in a formula.
For example, the formula
x + y
has three tokens:
x
+
y
If a formula has a syntax error, it doesn’t contain any tokens, as shown in this example.
formulatokencount("x +") ☞ 0
See Also
History
Version | Status | Notes |
10.2 | New | New in this version. |