SUM, SUMIF, SUMIFS

SUM, SUMIF, SUMIFS

SUM FUNCTION
The Excel SUM function returns the sum of values supplied. These values can be numbers, cell references, ranges, arrays, and constants, in any combination. SUM can handle up to 255 individual arguments.

Purpose - Add numbers together

Syntax
=SUM (number1, [number2], [number3], ...)

Example


To sum yellow highlighted D2 to D 13
=SUM(D2:D13)

Result: 7601

**************************************

SUMIF FUNCTION 

The Excel SUMIF function returns the sum of cells that supplied criteria. Criteria can be applied to dates, numbers, and text using logical operators (>,<,<>,=) and wildcards (*,?) for partial matching.

Purpose - Sum numbers in a range that meet supplied criteria

Syntax
=SUMIF (range, criteria, [sum_range])

Example

1.Total count of Area named "Badami"
=SUMIF(C2:C13,"Badami",D2:D13)
Result: 2182


Comments

Popular posts from this blog

COUNT, COUNTIF, COUNTIFS