أنشئ حسابًا أو سجّل الدخول للانضمام إلى مجتمعك المهني.
Round Function
1- Select - Formulas - from the lists
2- Choose - Insert Function - Option
3- Select a category - Math & Trig - from function box
4- click on - Round Function -
You can select also - RoundUp or RoundDown - Functions to control decimals digits
Many times I want a description for my data. One approach is to put the description—a simple text string—near the cell containing the data that needs describing. For instance, a numeric value could go in cell B3, and the unit description in cell C3, which read together may be something like "3.27 miles."
Another approach is to put the description text and the numeric value together. Creating text strings easily accomplishes this feat. Here's a very simple example that displays "1 +1 is2."
="1 +1 is " &1+1The quotation marks are important. By making the text string part of a formula, you can combine the description and the value within one cell.
The disadvantage of this approach is formatting the value takes more effort; since the result is a text string, numeric cell formatting does not apply. For example, consider the above formula and the need to display two decimal places. One might naturally display the Format Cell dialog box and then choose a Number format that has two decimal places, but the results would not change. (Remember, the result of the formula is text, not a number.)
To affect the value formatting, use the TEXT function. To force the above results to display the value to two decimal places, use the following formula.
="1 +1 is " & TEXT(1+1, "0.00")The different formats you can use with the TEXT function have been covered in other issues of ExcelTips, and you can also find more info in Excel's Help system. Here's an example that displays "Today is " along with today's date. Enter the following formula in some cell:
="Today is " & TEXT(NOW(),"dddd, mmm dd, yyyy")Again, the quotation marks are important, as you are constructing a text string.
you'll find a button to increase a decimal digit and another one to decrease it in the toolbar.
or
1- Right click on the desired cell and choose "Format Cell"
2- Select "Number" then Number.
3- Set the Value of Decimal Places as you want
or use this function
=Round(number, decimal places number)
Note: decimal places number is a positive when you want the round to be after the decimal point or negative if you want it before the point.
Out of my expertise........... sorry for inconvenience. I am with the answer of experts........................
The ROUND function can be used to reduce a number by a specific number of digits on either side of the decimal point.
In the process, the final digit, the rounding digit, is rounded up or down based on the rules for rounding numbers that Excel Online follows.
A function's syntax refers to the layout of the function and includes the function's name, brackets, and arguments.
The syntax for the ROUNDDOWN function is:
= ROUND ( number, num_digits )
The arguments for the function are:
number - (required) the value to be rounded
num_digits - (required) the number of digits to leave in the value specified in the number argument- if num_digits is a positive value, it only rounds digits in the number argument that are located to the right of the decimal point- if num_digits is negative, it only rounds digits in the number argument that are located to the left of the decimal point
Examples:
As seen in the image above, this example will use the ROUND function to round the number324.237 in cells A1 up or down four different ways - depending upon the value for the num_digits argument.
The four versions of the function will be:
cell B1: =ROUND(A1,1)cell B2: =ROUND(A1,2)cell B3: =ROUND(A1,-1)cell B4: =ROUND(A1,-2)
Enter the number324.237 into cell A1 as shown in the image above.
Excel Online does not use dialog boxes to enter a function's arguments as can be found in the regular version of Excel. Instead, it has an auto-suggest box that pops up as the name of the function is typed into a cell.
To enter the ROUND function into each of cells B2 to B4 with a different num_digits argument:
Unlike formatting options that allow you change the number of decimal places displayed without actually changing the value in the cell, the ROUND function, alters the value of the data.
Using this function to round data will, therefore, affect the results of calculations
You have2 options:
option1 to display only number of digits for the decimal part. You can use the Format cell to control how the number will appear n the cell.
Option2 to control the cell content to the exact number of decimal digits (not only display) you can use the Round() function. Pretty slight difference but very confusing for a lot on people.Regards
Mr Mohammed and Emad gave enough info... Thank You