give syntax of SUM and SUMIF (CAB 5th sem bcom)
Answers
Answer:
What is the SUMIF Function?
The SUMIF function is categorized under Excel Math and Trigonometry functions. It will sum up cells that meet the given criteria. The criteria are based on dates, numbers, and text. It supports logical operators such as (>, <, <>, =) and also wildcards (*, ?). This guide to the SUMIF Excel function will show you how to use it, step-by-step.
As a financial analyst, SUMIF is a frequently used function. Suppose we are given a table listing the consignments of vegetables from different suppliers. The names of the vegetable, names of suppliers, and quantity are in column A, column B, and column C, respectively. In such a scenario, we can use the SUMIF function to find out the sum of the amount related to a particular vegetable from a specific supplier.
Formula
=SUMIF(range, criteria, [sum_range])
The formula uses the following arguments:
Range (required argument) – This is the range of cells that we want to apply the criteria against.
Criteria (required argument) – This is the criteria which are used to determine which cells need to be added.
When we provide the criteria argument, it can either be:
A numeric value (which may be an integer, decimal, date, time, or logical value) (e.g. 10, 01/01/2018, TRUE) or
A text string (e.g. “Text”, “Thursday”) or
An expression (e.g. “>12”, “<>0”).
Sum_range (optional argument) – This is an array of numeric values (or cells containing numeric values) that are to be added together if the corresponding range entry satisfies the supplied criteria. If the [sum_range] argument is omitted, the values from the range argument are summed instead.
How to use the SUMIF Excel Function
To understand the uses of the SUMIF function, let’s consider a few examples:
Example 1
Suppose we are given the following data:
SUMIF Function
We wish to find total sales for the East region and the total sales for February. The formula to use to get the total sales for East is:
SUMIF Function - Example 1
Text criteria, or criteria that includes math symbols, must be enclosed in double quotation marks (” “).
We get the result below:
SUMIF Function - Example 1a
The formula for total sales in February is:
SUMIF Function - Example 1b
We get the result below:
SUMIF Function - Example 1c
A few notes about the SUMIF Excel Function
#VALUE! error – Occurs when the criteria provided is a text string that is more than 255 characters long.
When sum_range is omitted, the cells in range will be summed.
The following wildcards can be used in text-related criteria:
? – matches any single character
* – matches any sequence of characters
To find a literal question mark or asterisk, use a tilde (~) in front of the question mark or asterisk (i.e. ~?, ~*).
Explanation: