Joined: 29 Oct 2009
Online Status: Offline
Posts: 1587
Posted: 27 Feb 2019 at 4:21am
You should be able to set the number of places you want to round with the Round() function. If you always want to 'round down', then use the truncate function.
Joined: 19 Dec 2008
Online Status: Offline
Posts: 9053
Posted: 05 Mar 2019 at 3:17am
I believe you can also use MRound({field},100)
EDIT:
Sorry missed the rounding DOWN part for some reason...
MRound would not work for you. As others already indicated Truncate or Floor would work
Using Truncate with -2 as second parameter gives you the results you want:
Truncate (1410, -2) returns 1400
Truncate (199, -2) returns 100
Truncate (141, -2) returns 100
etc.
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot delete your posts in this forum You cannot edit your posts in this forum You cannot create polls in this forum You cannot vote in polls in this forum