Hi all,
I have the following dataset that is currently in V_WString type but I would like to perform a mathematical operation on it and I am struggling to find a way to do it. What I would like to achieve:

- Write an IF THEN statement to say that if [account] > 1999 and [account] < 4000 then [balance] * -1 ELSE [balance] ENDIF
Whenever I try to write that, I keep getting an error that says I cannot perform numeric operator to string value. To my understanding, that just means since [account] and [balance] are V_WString, I cannot perform numeric operator on this. But I am struggling to find a good solution to essentially perform the numeric operator for the above.

Any help in this would be much appreciated.