Mega Code Archive

 
Categories / VisualBasic Script / Math Functions
 

Fix(number) returns The integer portion of number (without rounding) If number is negative, returns the negative number gre

Sub mathDemo5()    Debug.Print Fix(3.14159) End Sub