how can chek the last number
Web Development
2
Posts
1
Posters
0
Views
1
Watching
-
How can check the last number for rounding in forms of 10 like decimal rounding system if last number is >= .50 then calculated as 1 or <.50 calculated as 0 11.50=12 11.40=11 so i wants to chek last number <=1154 then 1150 if last number is >=1155 then 1160
sanjeev
-
How can check the last number for rounding in forms of 10 like decimal rounding system if last number is >= .50 then calculated as 1 or <.50 calculated as 0 11.50=12 11.40=11 so i wants to chek last number <=1154 then 1150 if last number is >=1155 then 1160
sanjeev
Hi Happy New Year [code] round=10 * Round( value/ 10 ) [/code]
sanjeev