How to use SUM, SUMIF & SUMIFS in Excel ? Excel | Excel in Tamil | Excel Tamizha | Shortcuts | Easy
How to use SUM, SUMIF & SUMIFS in Excel ? Excel | Excel in Tamil | Excel Tamizha | Shortcuts | Easy
The SUM function is used to sum values. You can enter individual values, cell references, ranges, or a combination of the three.
As an example:
=SUM(A2:A10) adds the values from cells A2 to A10.
=SUM(A2:A10, C2:C10) The values in cells A2:10 are added, as are the values in cells C2:C10.
The SUMIF function is used to total the values in a range that fit the conditions you provide. For example, assume you wish to sum only the values that are greater than 5 in a column of integers. The following formula can be used:
=SUMIF(B2:B25,">5")
You may apply the criterion to one range and total the associated data in another range if you like. The formula =SUMIF(B2:B5, "John", C2:C5), for example, adds just the values in the range C2:C5, when the corresponding cells in the range B2:B5 equal "John."
One of the math and trig functions, the SUMIFS function, sums all of its parameters that match several requirements. For example, you might use SUMIFS to count the number of merchants in the country that (1) live in a single zip code and (2) have earnings that surpass a certain amount.
=SUMIFS(A2:A9,B2:B9,"=A*",C2:C9,"Tom")
=SUMIFS(A2:A9,B2:B9,"<>Bananas",C2:C9,"Tom")
Comments
Post a Comment