Thursday, November 21

Tag: Sum in excel

SUM AVERAGE MAX & MIN Function In Excel.

SUM AVERAGE MAX & MIN Function In Excel.

FORMULAS, Maths
For using these 4 function in excel and to know the actual purpose of all those function. Please follow the step mentioned below. SUM () function add all the numeric value available in different range. SUM() function only need the reference range For Example:- =SUM(B2:C7)AVERAGE () function add all the numeric value available in different range and divide it by the counting the cell with numeric value available. Suppose there are 4 cell and its total is 100 then Average () function will divide 100 by 4 100/4 = 25 is the average. For Example:- =AVERAGE(B2:C7)MAX() function find the bigger number from the given range or a cell reference. Suppose there are 4 cell and its contain 10, 20, 30, 40, then MAX() function will give you the 40 as a max number. For Example:- =MAX(B2:C7)MIN() functi...
SUMIFS In Excel

SUMIFS In Excel

FORMULAS, Maths
SUMIFS function adds all numeric values in a given range of cells based on more then one criteria. In this function you have to give first sum range ( from which we need to get the total ) then criteria range ( Name column range ) and then criteria1 and then criteria range 2 then criteria 2 (36). Example given in image below. PARAMETER: = SUMIFS ( Sum Range, Criteria Range, Criteria 1, Criteria Range 2, Criteria 2 ) IMPLEMENT: Here the auditor want to know that in this year how many car sold for Maruti Swift and if sold he want a total of the price sold. So the sumifs will take Sum range column (C) and range1 column (A) and 2 criteria 1st (Column D) Criteria range 2 Column (B) and criteria2 Column (E) FORMULA: =SUMIFS(C2:C11,A2:A11,D2,B2:B11,E2) ...
SUM Formula In Excel

SUM Formula In Excel

FORMULAS, Maths
SUM function is used to get automatic total of the numbers value in a selected range. Thereafter If you change the value in any of the selected range it will auto calculate and give you the exact final result. Please note that If there are text in some cell and some cell are with numeric value then sum function will ignore the text cells and will give you the result of numeric cells. It makes work very much easy when you have a large database. Example shown in image below. PARAMETER : = SUM ( RANGE ) FORMULA : =SUM(B2:F5)