Is there a simple built-in way to convert NVARCHAR in the format "$ 1,000.00" and "($ 1,000.00)" to the numeric values ββ1000.00 and -1000.00 respectively?
I am trying to do this in SQL Server or SSIS.
Sending to MONEY gives me an error
"Cannot convert a char value to money. The char value has incorrect syntax.".
when trying to pass a negative value, I guess because of the parenthesis.
source share