Announcements
No record found.
How does the found function work in Ax
num = round(num,0.01);
What is the function of the second argument
*This post is locked for comments
Hi
You can check this for more details:
docs.microsoft.com/.../xpp-math-run-time-functions
The second function is basically a multiplier of the number you want to round off to.
So, if you want to round 11 off to the nearest multiple of 5 (which would be 10), you'd use round(11, 5)
If you want to round 51 to the nearest multiple of 100 (which would be 100), you'd use round(51, 100)
if you want to round 9.8 to the nearest whole number, or to the nearest multiple of 1 (which would be 10), you'd use round(9.8, 1)
So basically, if you want to round off to a certain number of decimal places you'd use round(myNum, 0.00001) where 0.00001 includes the number of decimals you want to round off to
Round also doesn't only round up, it rounds down if down is the nearest number to round to
Hope this helps
Thank You!
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
Congratulations to our 2026 Super Stars!
Thanks to all of our 2025 Community Spotlight stars!
These are the community rock stars!
Stay up to date on forum activity by subscribing.
Joris dG 5
Alexey Lekanov 2
Henrik Nordlöf 2 User Group Leader