Complete the formula to round the number in cell A1 to 2 decimal places using the ROUND function.
=ROUND(A1, [1])The ROUND function rounds a number to the specified number of decimal places. Here, 2 means rounding to two decimal places.
Complete the formula to always round the number in cell B2 up to 1 decimal place using the ROUNDUP function.
=ROUNDUP(B2, [1])ROUNDUP rounds a number up, away from zero, to the specified number of decimal places. Here, 1 means one decimal place.
Fix the error in the formula to round down the value in C3 to the nearest whole number using ROUNDDOWN.
=ROUNDDOWN(C3, [1])To round down to the nearest whole number, use 0 as the number of decimal places.
Fill in the blank to create a formula that rounds the number in D4 up to the nearest 10 using ROUNDUP.
=ROUNDUP(D4, [1])Using -1 rounds up to the nearest 10 (one digit left of the decimal point).
Fill in the blank to create a formula that rounds the number in E5 down to 3 decimal places using ROUNDDOWN.
=ROUNDDOWN(E5, [1])ROUNDDOWN with 3 decimal places truncates to three digits after the decimal point.