Format Number Question

I’m at a loss and I guess I’m over-looking it. I’m trying to strip out the negative symbol (-) in front of a number being displayed.
So basically instead of returning -0.82 I want to show 0.82. Can’t this be done with one of the format numbers function? I’ve tried many of them but can’t seem to get it to work right.

Thanks,
Chris

1 Like

The Abs() function will do this, eg
{{var1.value.abs()}}

1 Like

Awesome! Thank you. Did not think of that.