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