Previous | Next | Contents | Index | Navigation | Glossary | Library |
The division, subtraction, and multiplication operators can only be used with numeric operands. The operands can be variables, constants, or subexpressions. A formula error occurs if:
The addition operator can be used with numeric or text operands. If the result is greater than 240 characters, a formula error occurs.
Notice that you enclose text constants in single forward quotes only ('), not double quotes ("). For example, the statements:
string1 = 'will '
result_string = 'Pigs ' + string1 + 'fly'
set the local variable result_string to 'Pigs will fly'.
Previous | Next | Contents | Index | Navigation | Glossary | Library |