Depends how you want to remove the decimal places. If you want to round DOWN to the nearest whole number, use the FLOOR function. FLOOR(113.23) will return 113
If you want to ROUND UP to the nearest whole number use CEILING. CEILING(113.32) will return 114
If you want to round up OR down depending on the size of the decimal part, use the ROUND function. ROUNG(112.23) will return 112 and ROUND(112.89) will return 113