0
0
Excelspreadsheet~20 mins

ROUND, ROUNDUP, ROUNDDOWN in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Master of ROUND Functions
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2:00remaining
Rounding a Negative Number with ROUNDUP
What is the result of the formula =ROUNDUP(-3.14159, 2) in Excel?
Excel
=ROUNDUP(-3.14159, 2)
A-3.15
B-3.14
C-3.13
D-3.10
Attempts:
2 left
💡 Hint
ROUNDUP always rounds away from zero.
📊 Formula Result
intermediate
2:00remaining
Using ROUNDDOWN with Positive Numbers
What is the output of =ROUNDDOWN(7.987, 1) in Excel?
Excel
=ROUNDDOWN(7.987, 1)
A7.9
B8.0
C7.99
D7.98
Attempts:
2 left
💡 Hint
ROUNDDOWN always rounds towards zero.
Function Choice
advanced
2:00remaining
Choosing the Right Function for Rounding to Nearest Integer
You want to round the number 4.3 to the nearest integer, rounding up if the decimal is 0.5 or more, and down otherwise. Which Excel function should you use?
AROUNDUP(4.3, 0)
BROUND(4.3, 0)
CROUNDDOWN(4.3, 0)
DINT(4.3)
Attempts:
2 left
💡 Hint
Think about normal rounding rules, not just always up or down.
🎯 Scenario
advanced
2:00remaining
Rounding Currency Values for Reporting
You have a list of prices with many decimal places. You want to round all prices up to the nearest cent (2 decimal places) to avoid undercharging customers. Which formula should you use in Excel?
A=ROUND(A1, 2)
B=ROUNDDOWN(A1, 2)
C=ROUNDUP(A1, 2)
D=INT(A1*100)/100
Attempts:
2 left
💡 Hint
You want to always round up, never down.
data_analysis
expert
3:00remaining
Counting Numbers Rounded Down to Zero
Given the list of numbers in cells A1:A5: 0.4, -0.3, 0.9, -0.7, 0.1, how many of these will become 0 when applying =ROUNDDOWN(A1, 0) to each cell?
A5
B2
C4
D3
Attempts:
2 left
💡 Hint
ROUNDDOWN rounds towards zero. Check each number carefully.