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: JRL, Dorian (MJT support)
- Dorian (MJT support)
- Automation Wizard
- Posts: 1415
- Joined: Sun Nov 03, 2002 3:19 am
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
Re: Add two numbers
Thank you Dorian. 
