| **Navigation:**  [[introduction.htm|Language Reference]] > 13 - Built-in Functions >====== INT (truncate fraction) ====== | [[instring return substring position .htm|{{btn_prev_n.gif|Previous page}}]][[introduction.htm|{{btn_home_n.gif|Return to chapter overview}}]][[isalpha return alphabetic character .htm|{{btn_next_n.gif|Next page}}]] | | || **INT(**//expression//**)** {{blk2blue.jpg|blk2blue.jpg}} | **INT** | Return integer. | | //expression// | A numeric constant, variable, or expression. | The **INT** procedure returns the integer portion of a numeric expression. No rounding is performed, and the sign remains unchanged. | **Return Data Type:** | REAL or DECIMAL | **Example:** **  !INT(8.5)     returns 8** **  !INT(-5.9)    returns -5** **x = INT(y)      !Return integer portion of y variable contents** **See Also:** [[bcd operations and procedures.htm|BCD Operations and Procedures]] [[round return rounded number .htm|ROUND]]