Hi
I have a number like this;:
Discount amount
4.051,03-
That im trying to make a number like this:
-4.051,03
When I use my furmula it removes the last two digits. And I cant find a way to solve it?
Formula:
ToNumber(IF Right(Trim([field8]),1) = '-'
THEN ToNumber(Left(Trim([field8]),Length(Trim([field8]))-1))*-1
ELSE Trim(field8)
ENDIF)