Hi,
Any suggestions on how I can adapt my current REGEX_Replace formula to achieve the desired output.
Input: (55,683.00)
Formula: ToNumber(REGEX_Replace([Field_3],"\((.*)\)",'-$1'))
Current Output: -55
Desired Output: -55,683.00
I basically want to keep the number as is but replace the parenthesis with a minus sign at the start.
Note dataset includes both positive and negative numbers.