Arithmetic Operators

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 4

Excel

Formulas Sheet

Made by: M.Ismail Arain


Arithmetic Operators, Comparison Operators and
logical functions.
 Arithmetic operator :(+,-,*,/)P
 Comparison :(=,<,>,<=,>=)
 Logical function :(And,or,not,(logic))

What is Formula?
 We create formula our self.

What is function?
 Function is a built in excel.

 These are some Formulas and its usages.

1) SUM
 Adds all the numbers in a range of cells.
 (Number1, [number2]…)

2) SUMIF
 Adds the cells specified by a given condition or
criteria.
 (Range , criteria , [range])

3) SUMIFS
 Add the cells specified by a given sat of conditions
or criteria.
 (Sum_range, criteria_range1, criteria1….)
4) COUNT
 Counts the number of cells in a range that contain
numbers
 (Value1, [value2]….)

5) COUNTIF
 Counts the number of cells within arrange that meet
the given conditions.
 (Range , criteria)

6) COUNTIFS
 Count the number of cells specified by a given set of
conditions or criteria.
 (criteria_range, criteria1…)

7) IF
 Checks whether a condition is met, and returns one
value if TRUE, and another value is FALSE.
 (logical test,[value_if_true], [value_if_false])

8) LOOKUP
 Look up a value either from a one-row or one column
range or from an array. Provided for backward
compatibility.
 (lookup_value,lookup_vector,[result vector])
7) CODE
 Returns a numeric code for the first character in a
text string, in the character set by your computer.
 (text)

8) CHAR
 Returns the character specified by the code number
from the character set for your computer.
 (number)

You might also like