Advanced Spreadsheet Skills Session 12
Advanced Spreadsheet Skills Session 12
SPREADSHEET
SKILLS
MICROSOFT EXCEL
Freeze a Column
Freeze a Row
Unfreeze a Pane
Basic Terms in Excel
FORMULA
In Excel, a formula is an expression that operates on values in
a range of cells or a cell. For example, =A1+A2+A3, which
finds the sum of the range of values from cell A1 to cell A3.
FUNCTIONS
Functions are predefined formulas in Excel. They eliminate
laborious manual entry of formulas while giving them human-
friendly names. For example: =SUM(A1:A3). The function
sums all the values from A1 to A3.
Lab activity
Formula: =SUM(number1,number2…)
Example: =SUM(B2:G2)
7 BASIC EXCEL
FORMULA
2. AVERAGE – The AVERAGE function calculates
the average of supplied numbers.
Formula: =AVERAGE(number1,number2…)
Example: =AVERAGE(B2:B11)
7 BASIC EXCEL
FORMULA
3. COUNT - The COUNT function counts all cells in
a given range that contain only numeric values.
Formula: =COUNT(value1,value2….)
Example: =COUNT(A1:C1)
7 BASIC EXCEL
FORMULA
4. COUNTA - Like the COUNT
function, COUNTA counts all cells in a given rage.
However, it counts all cells regardless of type. That is,
unlike COUNT that only counts numeric, it also counts
dates, times, strings, logical values, errors, empty
string, or text.
Formula: =COUNTA(value1,value2…)
Example: =COUNTA(C2:H2)
7 BASIC EXCEL
FORMULA
5. COUNTIF – Counts the number of cells within a
range that meet the given condition.
Formula: =COUNTIF(range,criteria)
Example: =(COUNTIF(A1:A7,”PASS”)
7 BASIC EXCEL
FORMULA
6. IF - The IF function is often used when you want to
sort your data according to a given logic. The best part
of the IF formula is that you can embed formulas and
function in it.
Formula: =IF(logical_test,[value_if_true],
[value_if_false])
Example: =IF(C2<D3, ‘TRUE’,’FALSE’)
7 BASIC EXCEL
FORMULA
7. VLOOKUP - VLOOKUP stands for 'Vertical
Lookup'. Looks for a value in the leftmost column of a
table, and then returns a value in the same row from a
column you specify.
Formula:
=VLOOKUP(lookup_value,table_array,col_index_n
um,[range_lookup])
Example:=VLOOKUP(2,A1:E10,4)
7 BASIC EXCEL
FORMULA