Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello
I have a data which is integer type like below
input
30
-40
-50
-60
all are int data type, and my output expected is
output
30
40
50
60
Thanks in Advance
Manish
Math.abs(row1.yourField)
Math.abs(row1.yourField)
Thank you so much @TRF What if the datatype is float or decimal ?
Thanks @TRF it helped to resolve my isssue