Unbalanced (), missing )!

Ordinary (round) brackets are used to determine the order in which mathematical operations are performed.
The formula test expects each parenthesis to have its own pair of parentheses. If this condition is not met, the formula test returns an error:

At the end of the message, we can also see whether the first or the last parenthesis is missing. We have the following two solutions:
1. Delete parenthesis if it is redundant.
2. If a parenthesis is entered correctly, assign it the correct pair at the end/beginning of the expression.
Correct |
Incorrect |
To solution 1:
#RPrice#
|
(#QUANTITY# * #RPrice# |
To solution 2:
(#QUANTITY# + 100) / #RPrice#
|
#QUANTITY# + 100) / #RPrice# |