- When should I use ROUNDUP vs ROUND?
- ROUNDUP always rounds away from zero regardless of the decimal value, while ROUND uses banker's rounding (nearest value, ties to even). Choose ROUNDUP when you need a conservative estimate that never underestimates, and ROUND for statistical or accounting rounding.
- How does ROUNDUP handle negative numbers?
- ROUNDUP rounds toward zero. ROUNDUP(−2.3, 0) returns −2, and ROUNDUP(−2.8, 0) also returns −2. The function rounds the absolute value up, then reapplies the original sign.
- Can I use negative values for num_digits in ROUNDUP?
- Yes. Negative num_digits rounds to the left of the decimal point. ROUNDUP(2456, −2) rounds to the nearest hundred, returning 2500. ROUNDUP(2456, −3) rounds to the nearest thousand, returning 3000.
- Why does my ROUNDUP formula show a #VALUE! error?
- This occurs when either the number or num_digits parameter contains text, a logical value, or a formula returning an error. Verify both parameters are actual numbers or cell references containing numbers, not text strings or error-producing formulas.