HomeGoogle DocsSpreadsheetHow to Use the Round Functions in Google Sheets

How to Use the Round Functions in Google Sheets

Published on

It’s always a better idea to keep the numbers simple or we can say clean by rounding them. So here comes the importance of the ROUND functions in Google Sheets.

There are certain rules regarding rounding numbers. The Round functions in Google Sheets are no exception to this.

Here in this post, you can quickly learn how to use Google Sheets three commonly using round functions and how they round numbers. The functions are ROUND(), ROUNDUP(), AND ROUNDDOWN().

Let’s start with the ROUND() function. Learning this function is a must to easily grasp the other two siblings of this function.

ROUND Function in Google Sheets

The purpose of the ROUND() function in Google Sheets is to round a number to a certain number of decimal places as per standard rules.

Syntax:

ROUND(value, places)

Arguments:

value – The value that you want to round.

places – The number of digits (decimal places) to which to round the value. It’s optional and the default value is 0 digit (decimal place).

The below examples will give you an idea about the said standard rules in rounding numbers.

Example to the ROUND function use in Google Sheets

There are 8 numbers (values) to round in cell range A2:A13 and the first number to round is 3.15 in cell A2. The number of ‘places’ to round is 1 in the ROUND formula in cell B2.

The formula rounds the number to 3.2 because as per the standard rule the digit to the right (the next most significant digit) is considered which is 5 in 3.15 here.

As per the standard rule, if the next most significant digit is;

>=5 – the digit is rounded up.
<5 – the digit is rounded down.

Please see the value in cell A3 which is 3.14. In this, the next most significant digit is 4. So the formula =round(A3,1) rounds down the digit and the result is 3.1.

The ‘places’ can be negative in the ROUND function in Google Sheets. In that case, the value is rounded to the left of the decimal point.

Please go through the below formulas and results to master the negative places use in the ROUND function in Google Sheets.

Negative places used in ROUND

ROUNDUP Function in Google Sheets

The purpose of the ROUNDUP() function is to always round up a number to a given number of decimal places. It behaves/operates like ROUND() except the fact that it always rounds up a number.

Syntax:

ROUNDUP(value,[places])

Arguments:

value – The value that you want to round up.

places – The number of digits (decimal places) to which to round up the value (an optional argument and the default value is 0).

Example Formulas

+ve Places in the ROUNDUP Function in Google Sheets:

Roundup +ve Places

-ve Places in the ROUNDUP Function in Google Sheets:

Roundup -ve Places

ROUNDDOWN Function in Google Sheets

The purpose of the ROUNDDOWN() function is to always round down a number, toward 0. This function also behaves/operates like ROUND() except the fact that it always rounds down a number.

Syntax:

ROUNDDOWN(value,[places])

Arguments:

value – The value that you want to round down.

places – The number of digits (decimal places) to which to round down the value. It’s an optional argument and the default value is 0.

Example Formulas

+ve Places in the ROUNDDOWN Function in Google Sheets:

+ve places in ROUNDDOWN function

-ve Places in the ROUNDDOWN Function in Google Sheets:

-ve places in ROUNDDOWN function

Combined Use with Other Formulas

The above are examples of how to use the Round Functions in Google Sheets.

You can use the above functions in combination with functions like SUM, DSUM, SUMPRODUCT, SUMIF, etc. by just wrapping the corresponding formulas. See a few examples below (excluded explanations).

ROUND Function with SUMIF:

=round(sumif(B5:E9,B13,C5:C9),0)

Similarly, you can use ROUNDUP as well as ROUNDDOWN functions with the SUMIF function.

ROUNDDOWN function with DSUM:

=rounddown(dsum(B6:D14,3,B2:D4),1)

ROUNDUP function with SUMPRODUCT:

=roundup(sumproduct((B7:B14="Myron Ambriz")*((C7:C14="North")+(C7:C14="South"))*(D7:D14)),0)

Conclusion

When we use Google Sheets to create invoices or anything related to money, it is better to limit the number of decimal places to two or zero.

You can use any of the Round functions above in such cases. A simple number is always easy to remember, right?

There are a few more Round functions in Google Sheets like TRUNC, MROUND, etc. I think it’s better to write a separate post for that.

Similar:

Prashanth KV
Prashanth KV
Your Trusted Google Sheets and Excel Guide Prashanth KV brings a wealth of experience in Google Sheets and Excel, cultivated through years of work with multinational corporations in Mumbai and Dubai. As a recognized Google Product Expert in Docs Editors, Prashanth shares his expertise through insightful blogging since 2012. Explore his blog for practical tips and guidance on maximizing your spreadsheet skills.

SORT and SORTBY – Excel Vs Google Sheets

While Excel offers the SORT and SORTBY functions for sorting a table, Google Sheets...

Get Top N Values Using Excel’s FILTER Function

When using the FILTER function in Excel to extract the top N values, it's...

XLOOKUP in Excel: Working with Visible Rows in a Table

In Excel, the XLOOKUP function isn't inherently designed to exclusively work with visible rows;...

SUMPRODUCT Differences: Excel vs. Google Sheets

The core purpose of the SUMPRODUCT function remains consistent across both Excel and Google...

More like this

Interactive Random Task Assigner in Google Sheets

You have multiple tasks and multiple people. Here's a fun way to randomly assign...

Google Sheets Bar and Column Chart with Target Coloring

To color each data point in the column or bar chart according to the...

Analyzing Column A Between Non-Adjacent Values in Column B: Google Sheets

This tutorial addresses a common scenario encountered in Google Sheets: how to sum, average,...

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.