Page 1 of 1

Absolute of a number value

Posted: Mon Feb 23, 2009 12:52 am
by Saro
Hi,

I have to show the absolute value of a number in my report, but I find it hard to find the function for it. I tried looking for Abs() and also tried looking in Func class, but couldn't find. Can someone help me to achieve this?

Thank you.

Absolute of a number value

Posted: Mon Feb 23, 2009 1:04 am
by Edward
Hi

Please use the following expression:

Code: Select all

{Math.Abs(-100)}
Thank you.