Whennum_digitsis greater than zero, the ROUND function rounds on therightside of the decimal point.

Whennum_digitsis less or equal to zero, the ROUND function rounds on theleftside of the decimal point.

Use zero (0) fornum_digitsto round to the nearest integer.

Excel formula: Round to nearest 1000

The result is less accurate, but easier to use.

The ROUND function uses a standard rounding process like this:

1.

The precision is determined by the number of decimal places provided as thenum_digitsargument.

Excel formula: Round a number

Determine the rounding digit.

This is the number in the place you are rounding to.

Round the number based on thenext number to the right.

Excel formula: Round a number to n significant digits

Leave the rounding digit the same if the next number to the right is less than 5.

Increase the rounding digit by 1 if the next number is 5 or more.

In contrast, the ROUND function will round a number and return amodified numberas a final result.

Excel formula: Round a price to end in .99

For details on Excel’s custom number formatting with many examples,see this article.

MROUND will round a number up or down, depending on the nearest multiple.

CEILING Function

The Excel CEILING function rounds a given numberupto the nearest specified multiple.

Excel ROUNDUP function

CEILING works like theMROUND function, but CEILINGalways rounds up.

FLOOR Function

The Excel FLOOR function rounds a given number down to the nearest specified multiple.

FLOOR works like the MROUND function, but FLOORalways rounds down.

Excel ROUNDDOWN function

Note that negative numbers becomemore negative.

For example, while INT(10.8) returns 10, INT(-10.8) returns -11.

For example, TRUNC(4.9) will return 4, and TRUNC(-3.5) will return -3.

Excel MROUND function

The TRUNC function does no rounding, it simply truncates as specified.

Excel CEILING function

Excel FLOOR function

Excel INT function

Excel TRUNC function