×

Decimals in Excel

Microsoft Excel is widely used for calculation purposes for various applications. The calculation consists of numbers which include whole numbers, decimals, integers etc. To perform quick calculations, the numbers should be simplified. To round off the numbers and to get the accuracy of the result, Excel provides default functions. Coming to the concept of decimal, if the decimal number is large, the calculation is difficult. To reduce or round off the decimal number, Excel provides the option to reduce the decimal points. 

1. How to round off the Decimal values using Excel function?

To reduce the decimal values in Excel, the steps to be followed are,

 STEP 1: Enter the data in the respective cell namely A1.

Decimals in Excel

 STEP 2: Choose the decrease decimal button from the Number group in Home tab.

Decimals in Excel

STEP 3: The result in the cell A1 will change where the decimal point is reduced.

Decimals in Excel

In the formula bar the existing value is present 14.571. To perform multiplication calculation with the value present in A1, steps followed are,

STEP 4: Select a new cell, namely B1 and enter as 5*A1.  

Decimals in Excel

The multiplication result is displayed in the cell B1.

Decimals in Excel

2. How to round off the decimal value using formula?

The decimal values can be rounded to user desired values like ones, tens, hundreds and thousands using the respective formula.

To round off the decimal numbers, Excel provides ROUND function for calculation. It consists of two arguments. The first argument is called cell reference or number which indicates the number that needs to be rounded. The second argument indicates the, number of digits to be rounded in the given data.

2.1 How to round three numbers from the right of the decimal point?

To round off three numbers from the right of the decimal point using formula, the steps to be followed are,

STEP 1: Enter the data in the respective cell namely A1.

Decimals in Excel

STEP 2: Select any new cell namely B1, where the result want to display

STEP 3: Enter the formula in the cell B1 as =ROUND (A1,3)

Decimals in Excel

From the above worksheet the value 590.75467 is rounded to 590.76 is called nearest value, where the three numbers right to the decimal point is rounded off.

2.2 How to round two numbers from the right of the decimal point?

To round off two numbers from the right of the decimal point using formula, the steps to be followed are,

STEP 1: Enter the data in the respective cell namely A1.

Decimals in Excel

STEP 2: Select any new cell namely B1, where the result want to display

STEP 3: Enter the formula in the cell B1 as =ROUND (A1, 2)

Decimals in Excel

From the above worksheet the value 100.6789 is rounded to 100.68is called nearest value, where the two numbers right to the decimal point is rounded off.

2. 3 How to round one numbers from the right of the decimal point?

To round off one numbers from the right of the decimal point using formula, the steps to be followed are,

STEP 1: Enter the data in the respective cell namely A1.

Decimals in Excel

STEP 2: Select any new cell namely B1, where the result want to display

STEP 3: Enter the formula in the cell B1 as =ROUND (A1, 1)

Decimals in Excel

From the above worksheet the value 50.56 is rounded to 50.60is called nearest value, where the one number right to the decimal point is rounded off.

2.4 How to round three numbers from the left of the decimal point?

To round off three numbers from the left of the decimal point using formula, the steps to be followed are,

STEP 1: Enter the data in the respective cell namely A1.

Decimals in Excel

STEP 2: Select any new cell namely B1, where the result want to display

STEP 3: Enter the formula in the cell B1 as =ROUND (A1, - 3)

Decimals in Excel

From the above worksheet the value 5778.67 is rounded to 6000 is called nearest value, where the three numbers left to the decimal point is rounded off.

2.5 How to round two numbers from the left of the decimal point?

To round off two numbers from the left of the decimal point using formula, the steps to be followed are,

STEP 1: Enter the data in the respective cell namely A1.

Decimals in Excel

STEP 2: Select any new cell namely B1, where the result want to display

STEP 3: Enter the formula in the cell B1 as =ROUND (A1,-2)

Decimals in Excel

From the above worksheet the value 144.579 is rounded to 100 is called nearest value, where the two numbers left to the decimal point is rounded off.

2.6 How to round one numbers from the left of the decimal point?

To round off one numbers from the left of the decimal point using formula, the steps to be followed are,

STEP 1: Enter the data in the respective cell namely A1.

Decimals in Excel

STEP 2: Select any new cell namely B1, where the result want to display

STEP 3: Enter the formula in the cell B1 as =ROUND (A1, -1)

Decimals in Excel

From the above worksheet the value 1570.678 is rounded to 1570 is called nearest value, where the one numbers left to the decimal point is rounded off.

3. How to round the nearest whole numbers?

To round the nearest whole number using formula, the steps to be followed are,

STEP 1: Enter the data in the respective cell namely A1.

Decimals in Excel

STEP 2: Select any new cell namely B1, where the result want to display

STEP 3: Enter the formula in the cell B1 as =ROUND (A1, 0)

Decimals in Excel

From the above worksheet the value 570.5 is rounded to 571 is called nearest value, where the nearest whole number is rounded off.

4. How to use the ROUND function in division?

In division, the quotient obtained by dividing the whole numbers, is integer, decimal, whole number etc. To simplify and round off the result, ROUND function is used in division calculation.

STEP 1: Enter the data in the respective cell namely A1 and B1.

Decimals in Excel

STEP 2: Select any new cell namely C1, where the result want to display

STEP 3: Enter the formula in the cell C1 as =ROUND (A1/B1, 0)

Decimals in Excel

From the above spreadsheet, the result of dividing A1/B1 (68/ 3) is 22.66. The ROUND functions round off the value to 23. This process is called nesting inside the ROUND function. The formula or method which returns the numeric value is nested inside the ROUND function.

Summary

From the above tutorial, Excels default functions and formulas to round off the decimal value is clearly described.


Related Topics

Excel VALUE() Function

The VALUE() function in excel converts the specific text representing a number (i.e., a number, date, or time format) into a numerical value. Syntax VALUE(Text) Parameter Text(required)- This parameter represents the string that you want...

1 minute read.

How to Highlight Duplicates Words in the Microsoft Excel?

We can easily highlight the values that are duplicated in the selected dataset, whether it could be a column or a row from the particular table, with the help of...

6 minutes read.

Check Marks in Excel

What is a Check Mark? Among various characters checkmark is one of the characters used to indicate that the item or product in the list is correct, chosen or selected. A...

5 minutes read.

Data Validation in Excel

What is Data Validation? Data Validation is one of the features in Excel that allows user to restrict values which other people can fill in – for example, in a form, you may...

4 minutes read.

Excel ROUND() Function

Excel ROUND() Function The ROUND() function in excel rounds the numbers to specified digits. Syntax ROUND(Number,num_digits) Parameter Number(required)- This parameter represents the number which you want to round up. num_digits(required)- This parameter represents the number of decimal places to which...

1 minute read.

Excel COUNT() Function

Excel COUNT() Function The COUNT() function counts the number of cells in a range that contain numbers. Syntax COUNT([value1], [value [2], ...) Parameter value1(required)- This parameter represents the first cell in the range. value2, …(optional)- It represents the...

1 minute read.

What is a name box in Excel?

The name box in Microsoft Excel specifies a name for a single cell or a table. The name box is present in the top left corner, left to the formula...

4 minutes read.

How to make use of the Excel Autofit in Excel

In Microsoft Excel, Autofit can be used to adjust and then fix the column and the respective row height to till the maximum limit until and unless it has the...

7 minutes read.

Excel WEEKNUM() Function

The WEEKNUM() function in excel returns the week number from 1 to 54 of a specific date in a year. The WEEKNUM function starts counting with the week that contains January 1...

1 minute read.

Excel Themes

Microsoft Excel contains various features to enhance the appearance of the worksheet like text color, font size and general outlook of the objects. The users are provided with multiple theme...

3 minutes read.

Excel Axes

What is Excel Axes? Axes are a horizontal or vertical line containing units of measure. There are two types of axes X and Y axes. X is a horizontal and Y...

3 minutes read.

Excel AVERAGE() Function

Excel AVERAGE() Function The AVERAGE() function returns the average of its arguments, which can be number or names, arrays, or references that contain numbers. It ignores text values and blank cells. Syntax AVERAGE(Number1,Number2, ...) Parameter Number1(required)- This parameter...

1 minute read.

Excel COUNTIFS() Function

Excel COUNTIFS() Function The COUNTIFS() function in excel is used to count the numbers within a range that meet the supplied criteria.  Syntax COUNTIFS (range1, criteria1, [range2], [criteria2], ...) Parameter Range1 (required)- This parameter represents...

1 minute read.

Frequency Distribution in Excel

The term Frequency Distribution in Microsoft Excel is mainly used to explain how the data will be spread out. And it could be achieved with the help of the Histogram,...

7 minutes read.

Adding Column in Excel

Excel spreadsheet is a combination of rows and columns. After creating the table, there is a need to insert additional row or columns. To organize a better worksheet for calculations,...

5 minutes read.

Excel IFNA Function

Excel IFNA Function The IFNA in Excel is used to remove the #N/A type of errors in excel values cells with our choice of value. IFNA function is from Excel 2013 onwards, so it...

1 minute read.

Go-To Special function in Excel

Go-to Special The Go-To Special function in Excel allows you to select all cells that meet certain criteria quickly. This command is used to identify specific cells – the ones which...

1 minute read.

How to use TODAY function in Excel

What is TODAY Function in Excel? Today function is one of the types of Worksheet function (WS) in Excel.Today Function belongs to the Date and Time functions.It is used to calculate...

3 minutes read.

Excel WEEKDAY() Function

The WEEKDAY () function in excel returns number from 1 (Sunday) to 7 (Saturday) identifying the day of the week based on its date. This function Default return is - Sunday would be...

1 minute read.

Excel VLOOKUP() Function

Excel VLOOKUP() Function The VLOOKUP() function in excel is used to lookup the value on the leftmost side of the table and then return the value in the corresponding row basis on the supplied...

2 minutes read.