Is there an easy simple way to make a number positive in an expression? For instance, the value I'm using could range from -200 to 200, but if its -200 I want it to be 200.
I know you can do *-1, while its good for making negative numbers positive it will make the positive numbers negative. But I only want positive.
At the moment I'm doing an X>0?A:B thing, but I'm just interested to know if there is a different method I could use in an expression.