How to Round Percentage Values in Google Sheets

You can use the ROUND, ROUNDUP, or ROUNDDOWN function to round percentage values in Google Sheets. These functions work similarly to how they apply to regular numbers. However, if you want to round percentages to a specific number of decimal places, there’s an important detail to note: percentages in spreadsheets are stored as decimal values but displayed in percentage format.

Percentages are numbers expressed as a fraction of 100 and are often written with a percent sign (%). This means that when rounding percentages to a specific number of decimal places, you should specify the desired number of places + 2 in the rounding functions. Let’s go through some examples to understand this better.

Rounding Percentage Values in Google Sheets

To round percentage values in Google Sheets, you can use the ROUND(), ROUNDUP(), or ROUNDDOWN() functions.

Example:

Assume cell A1 contains 25.26%.

Apply the following formula in cell B1:

=ROUND(A1, 1)

You will get 30%.

Why? The actual number in cell A1 is 0.2526, and rounding it to one decimal place gives 0.3, which is displayed as 30%.

Rounding Decimal Places of a Percentage Value

If you want to round the decimal places of a percentage value, you should increase the number of places by 2.

Example:

=ROUND(A1, 3)

This will round the percentage value to one decimal place and return 25.30%.

Here are a few more examples of rounding percentage values in Google Sheets.

Example of rounding the decimal places of a percentage in Google Sheets

Round Up or Round Down Percentage Values

Note: When using ROUNDDOWN or ROUNDUP, wrap them with TO_PERCENT to retain the percentage format. Alternatively, you can manually format the result cell by selecting Format > Number > Percent.

Example:

If A1 contains 25.26%, the following ROUNDUP formula will round it to 30%.

=TO_PERCENT(ROUNDUP(A1, 1))

Why? The formula rounds 0.2526 up to 0.3, which is displayed as 30%.

For ROUNDDOWN, use:

=TO_PERCENT(ROUNDDOWN(A1, 1))

This will return 20%, as 0.2526 rounds down to 0.2.

Rounding Up or Down the Decimal Places of a Percentage Value

To round up or down the decimal places of a percentage value, follow the same rule—add +2 to the places you want to round to.

Examples:

=TO_PERCENT(ROUNDUP(A1, 3))

Result: 25.30%

=TO_PERCENT(ROUNDDOWN(A1, 3))

Result: 25.20%

Here are more examples of rounding percentage values in Google Sheets.

Example of rounding down the decimal places of a percentage in Google Sheets

How Do I Remove the Decimal Part from a Percentage?

If you want to remove the decimal part from a percentage without rounding, use this formula:

=TO_PERCENT(TRUNC(A1*100)/100)

If you prefer to remove the decimal with rounding, use:

=TO_PERCENT(VALUE(TEXT(A1, "00%")))

Additional Resources

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.

Count Consecutive Duplicates in Excel (Dynamic Array Formula)

Counting consecutive duplicates in Excel is useful for analyzing patterns, detecting repetitive sequences, and...

How to Break RANK Ties Alphabetically in Google Sheets

The RANK function in Google Sheets is commonly used to assign rankings to numerical...

Google Sheets: Highlight an Entire Column If Any Cell Has an Error

Google Sheets allows you to highlight an entire column if any cell has an...

Filter Top N per Category in Excel (Using FILTER & COUNTIFS)

You can use a combination of FILTER and COUNTIFS to filter the top N...

More like this

How to Break RANK Ties Alphabetically in Google Sheets

The RANK function in Google Sheets is commonly used to assign rankings to numerical...

Google Sheets: Highlight an Entire Column If Any Cell Has an Error

Google Sheets allows you to highlight an entire column if any cell has an...

Google Sheets: Extract Top N per Group from Query Aggregation

When working with grouped and aggregated data in Google Sheets, you might need to...

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.