How to Set Decimal Places in Excel with Formula (5 Ways)

Suppose we have a dataset that contains values with five decimal places, but we want to only display two decimal places. In this article, we demonstrate 5 effective ways to set decimal places in Excel with a formula (and 2 ways to do it without using a formula).

To illustrate the methods, we’ll use the following dataset, containing the GPA of five students, and set the values of GPA to two decimal places instead of five.

5 Effective Ways to Set Decimal Places in Excel with Formula


Method 1 – Using the ROUND Function

The ROUND function rounds a number, either up or down, to the number of digits specified.

STEPS:

  • Select cell D5.
  • Enter the following formula:
=ROUND(C5,2)

Excel ROUND Function to Set Decimal Places

  • Press Enter.
  • Drag the Fill Handle tool from cell D5 to D9.

The values of GPA now display with two decimal places.

Read More: How to Remove Decimals in Excel with Rounding


Method 2 – Using the ROUNDUP Function

The ROUNDUP function rounds a value up to the decimal point on the right or left.

STEPS:

  • Select cell D5.
  • Enter the following formula:
=ROUNDUP(C5,2)

Set Decimal Places with ROUNDUP Function

  • Hit Enter.
  • Drag the Fill Handle tool from cell D5 to D9.

The GPA values now display two decimal places with upper rounding.

Read More: How to Remove Decimals Without Rounding in Excel


Method 3 – Using the ROUNDDOWN Function

The ROUNDDOWN function in Excel rounds a number down.

STEPS:

  • Select cell D5.
  • Enter the following formula:
=ROUNDDOWN(C5,2)

Use Formula with Excel ROUNDDOWN Function

  • Press Enter.
  • Drag the Fill Handle tool from cell D5 to D10.

Results up to two decimal places are displayed.

Read More: How to Get 2 Decimal Places Without Rounding in Excel


Method 4 – Using the TRUNC Function

The TRUNC function in Excel truncates a number to a specified number of digits.

STEPS:

  • Select cell D5.
  • Enter the following formula:
=TRUNC(C5,2)

Decimal Places Setting with TRUNC Function in Excel

  • Hit Enter.
  • Drag the Fill Handle tool from cell D5 to D10.

The values of GPA are trunctated to two decimal places.


Method 5 – Combining FLOOR and IF Functions

The FLOOR function in Excel rounds down both the integer number and decimal number to the nearest specified multiple of significance. The IF function is used to check if a condition is met and return different results depending on whether the condition is met or not.

STEPS:

  • Select cell D5.
  • Enter the following formula:
=FLOOR(C5, IF(C5>0, 0.01, -0.01))

Combine FLOOR and IF Functions to Set Decimal Places

  • Press Enter.
  • Drag the Fill Handle tool from cell D5 to D9.

The values of GPA are limited to two decimal places.

How Does the Formula Work?

  • IF(C5>0, 0.01, -0.01): This section calculates the value of the given numbers to two decimal places. If the value in C5 is positive and greater than 0, it will return 01 rather than -0.01.
  • FLOOR(C5, IF(C5>0, 0.01, -0.01)): In this part, we use the FLOOR function to pass the cell number, which is C5 as well as the IF function’s return value.

How to Set Decimal Places in Excel Without Using a Formula

Method i – Apply Excel ‘Format Cells’ Option

To illustrate this method we will use the following dataset containing GPAs of five students in two semesters, along with a column showing the CGPA of students. Let’s set the values of CGPA up to two decimal places using the Format Cells feature.

Apply Excel Format Cells Option to Set Decimal Places

STEPS:

  • Select the cell range E5:E9.
  • Right-click on the selected area.
  • Click Format Cells from the context menu.

Apply Excel Format Cells Option to Set Decimal Places

  • A new dialogue box named Format Cells appears.
  • Select Number from the Category section.
  • Set the value 2 in the Decimal places box.
  • Click OK.

The result is as follows:


Method ii – Using the ‘Increase Decimal’ and ‘Decrease Decimal’ Buttons

STEPS:

  • Select the cell range E5:E9.
  • Go to the Home tab.
  • From the Number section on the ribbon, click the ‘Decrease Decimal’ button 3 times.

Utilize ‘Increase Decimal’ and ‘Decrease Decimal’ Buttons

The value of CGPA is decreased to two decimal places.

NOTE: Similarly, the ‘Increase Decimal’ button can be used to increase the number of digits after the decimal point.


Download Practice Workbook


Related Articles


<< Go Back to Rounding in Excel | Number Format | Learn Excel

Get FREE Advanced Excel Exercises with Solutions!
Mukesh Dipto
Mukesh Dipto

Mukesh Dipto is an excellent marine engineer who loves working with Excel and diving into VBA programming. For him, programming is like a superhero tool that saves time when dealing with data, files, and the internet. His skills go beyond the basics, including Rhino3D, Maxsurf C++, AutoCAD, HTML, CSS, JavaScript, and WordPress. He got his B.Sc in Naval Architecture & Marine Engineering from BUET, and now he's switched gears, working as a content developer. In this role, he... Read Full Bio

We will be happy to hear your thoughts

Leave a reply

Advanced Excel Exercises with Solutions PDF

 

 

ExcelDemy
Logo