ROUND function rounds the number value to nearest digit mentioned in argument.
ROUND function has two required arguments i.e. number and num_digits
=ROUND(number,num_digits)
number argument is used to give cell range or number value that is to be rounded
num_digits argument is used to give number of digits the number argument should be rounded
We can use Round formula in excel. There are different round formulas.
When there is decimals in figures so it create problems in calculation here we need to use round formula to round off figures which makes calculations easy its limited to specified decimals.
Let us understand all these with few examples given below.
Here we are using ROUND Formula to round figures in excel. Round Formula ask for 2 arguments. 1 is number and num digits.
If we want to round in 1 decimal the formula is =ROUND(D3,1).
If we want to round in 2 decimal the formula is =ROUND(D4,2)
If we want to round nearest to whole number formula is =E5=ROUND(D4,2)
If we want to round to nearest 10 the formula is=ROUND(D6,-1)
If we want to round to nearest 100 the formula is =ROUND(D7,-2)
If we want to round to nearest 1000 the formula is =ROUND(D8,-3).
As shown in below image
Now we will learn ROUNDUP excel formula. ROUNDUP always roundoff the number to next number. In ROUND we are rounding the value to below numbers or down number. Rest everything is same.
If we want to round in 1 decimal the formula is ==ROUNDUP(D3,1).
If we want to round in 2 decimal the formula is =ROUNDUP(D4,2)
If we want to round nearest to whole number formula is =ROUNDUP(D5,0)
If we want to round to nearest 10 the formula is=ROUNDUP(D6,-1)
If we want to round to nearest 100 the formula is =ROUND(D7,-2)
If we want to round to nearest 1000 the formula is =ROUND(D8,-3)
As shown in below image
SUMPRODUCT function performs multiplication of numbers within arrays and then sum the values SUMPRODUCT function has array1, 2.. arguments.
SUMIFS function is used to get the “total sum” of values for matching criteria across range. SUMIFS Function has required and optional arguments
Microsoft Excel “NOW” function is used to get the current Date and Time. It is very useful function and can be used in many ways.
“NETWORKDAYS” function is very helpful feature in the Microsoft excel to calculate the working days from a particular period excluding “Saturday and Sundays”. NETWORKDAYS function subtract the Start Day from the End Date provided.
RAND AND RANDBETWEEN FUNCTION We have got many instances where we needed to generate a random database or values. “RAND function” is very useful for users who creates random database for various types of working…
AVERAGEIF function is used to get the “average” of values for matching criteria across range. Average = Sum of all values / number of items.