Hi folks,
I need a bit of help here. Full disclosure in that I am a huge NEWBIE here.
The data I am trying to manipulate came from a PDF. The numbers, currently set up as strings, have the following problematic formats:
ex: 87334.65-
ex: 7777.98-*
ex: 8888.88*
I tried the following formula I found from another post that worked pretty well at first glance:
tonumber(replacechar(trim(regex_replace([Field_1],"^-0{1,}",'-'),"0"),"$,",""),1)
However, I have run into an issue. The numbers with "-" at the end are supposed to be negative. Is there any way to these into negative numbers while having the ones without the "-" remain positive?