Hello,
I have two numbers
let>t=1.23
let>tt=0.009
Add>t,tt
I got t=1.24
How can I get t=1.239? That is the number as I expected. tried to format number but not work.
Thanks
Add two numbers
Moderators: Dorian (MJT support), JRL
- Dorian (MJT support)
- Automation Wizard
- Posts: 1386
- Joined: Sun Nov 03, 2002 3:19 am
- Contact:
Re: Add two numbers
In the Help File it says "Deprecated by Let for numeric calculations"
Therefore :
xx = 1.239 as required.
Therefore :
Code: Select all
let>t=1.23
let>tt=0.009
Let>xx=t+tt
Yes, we have a Custom Scripting Service. Message me or go here
Re: Add two numbers
Thank you Dorian.