Excel Training 02
Excel Training 02
FUNCTIONS and
FORMULAS
1
[email protected]
Formulas are equations that perform
calculations on values in your worksheet. A
formula starts with an equal sign (=). For
example, the following formula multiplies 2
by 3 and then adds 5 to the result.
3
Insert Function Dialog Box
Use the Insert Function
dialog box to help you insert
the correct formula and
arguments for your needs.
4
Text and String Functions
5
Text Functions - Converts a value to a specific format.
Syntax
TEXT(value,format_text)
6
Logical Functions
7
IF Specifies a logical test to perform
Syntax
IF(logical_test,value_if_true,value_if_false)
8
COUNTIF
- Counts the number of cells within a range
that meet the given criteria.
Syntax
COUNTIFS(range1, criteria1,range2,
criteria2…)
9
COUNTIFS
- Counts the number of cells within a range
that meet multiple criteria.
Syntax
COUNTIF(range,criteria)
10
SUMIF/(S)
- Adds the cells specified by a given criteria.
Syntax
SUMIF(range,criteria,sum_range)
11
Multiple IF
- Returns one value if a condition you specify
evaluates to TRUE and another value if it
evaluates to FALSE. But here you create
multiple true statements. There is a limit to
it.
Syntax
IF(logical_test,value_if_true,
IF(logical_test,value_if_true,
…….,
IF(logical_test,value_if_true,value_if_false))
12
13
14
Lookups
- The LOOKUP function has two syntax forms: the
vector form and the array form.
- Lookup vector starts with smallest to the largest
number.
- Helpful only on looking for number ranges lookup.
Syntax
LOOKUP(lookup_value,lookup_vector,result_
vector)
15
VLookups
- Searches for a value in the first column of a table
array and returns a value in the same row from
another column in the table array.
The V in VLOOKUP stands for vertical. Use
VLOOKUP instead of HLOOKUP when your
comparison values are located in a column to the left
of the data that you want to find.
Syntax
VLOOKUP(lookup_value,table_array,col_index
_num,
range_lookup)
16
HLookup
- Searches for a value in the top row of a table or an
array of values, and then returns a value in the same
column from a row you specify in the table or array.
Syntax
HLOOKUP(lookup_value,table_array,row_inde
x_num,range_lookup)
17