ROUND(number, -2) rounds to the hundreds place. ROUND(139.898, -2) = 100 (139 rounds down to 100). ROUND(188.898, -2) = 200 (188 rounds up to 200). The negative second parameter specifies the decimal place to round to - negative means left of decimal point.