Hello All,
How to use the Abs function. Tried these but none of them worked.
let>x=Abs(-3)
mdl>x
=============
let>x=-3
let>y=Abs(x)
mdl>y
Please help!
Thanks
Abs(x) Function
Moderators: Dorian (MJT support), JRL
- Dorian (MJT support)
- Automation Wizard
- Posts: 1386
- Joined: Sun Nov 03, 2002 3:19 am
- Contact:
Re: Abs(x) Function
I think this is what you need :
OR :
OR :
Code: Select all
Let>x=-3
Let>y={Abs(%x%)}
MessageModal>y
Code: Select all
Let>y={Abs(-3)}
MessageModal>y
Code: Select all
MessageModal>{Abs(-3)}
Yes, we have a Custom Scripting Service. Message me or go here
Re: Abs(x) Function
Thank you