Function that returns the absolute value of a number (ignoring positive/negative sign)
Syntax Abs (number)
The Abs function will always return a positive number.
Examples
Dim dblDemo
dblDemo = Abs (-123.4)
123.4
dblDemo = Abs (45.1)
45.1
“I've nothing much to offer, There's nothing much to take, I'm an absolute beginner” ~ David Bowie
Related:
Int - Return the integer portion of a number