Decipher reads value from a field which is a monetary value and can be negative sometimes. For whatever reason, money datatype had a low confidence level so I am using Text datatype and it is reading accurately with full confidence.
Example of value: (15) reads off as {(15)
Exclude values removes "{" and ")"
Value remaining: (15
At this point I am using Regex, If the value has "(", then replace it with "-"
However, the documents gets stopped at Data verification stage with red flag on this field. Error message is "The Value is not equal to -15 in the formula".
The Value auto-populated is (15)
Expression: IF(EQ(STRCONTAINS(Field_Id,"("),1), STRREPLACE(Field_Id,"(","-"),SELF)
Any ideas/tips on how to improve the expression ?