Using the immediate window I get:
? int(23.214)
23
? int(-23.214)
-24
If you need your result to be positive (absolute number) then use abs() function to get final result:
? abs(int(23.214))
23
? abs(int(-23.214))
24
Does that help? SgarV
|
Results 1 to 3 of 3
Thread: Help Fix,Int,Round?Threaded View
|
Click Here to Expand Forum to Full Width |