Advanced Excel/ Excel Based Analysis and Modelling: Relative
Advanced Excel/ Excel Based Analysis and Modelling: Relative
modelling
Introduction
Excel is commonly known for creation and manipulation of tables of data and
presentation of data in diagrams. Excel can do so much more which include
-Automatize the manipulation of tables through modification of existing routines and
creation of new applications
-Data analysis, modelling and simulation
Advanced Excel skills are very applicable in Industry, Finance and Engineering.
Some basics(refreshing)
-enter data
-modify entered data
-format cell entries
-format cell size
-merge cells
-add comments to cell(s)
-formulae
-autofill function
-cell reference (relative, mixed and absolute)
Excel assumes the reference is a relative reference, that means
the cell reference changes when you copy the cell.
A column or a row can be “fixed” by adding a “$”-symbol:
There are four possibilities:
= A3 changeable column and row (relative reference)
= A$3 changeable column, fixed row (mixed reference)
= $A3 fixed column, changeable row (mixed reference)
= $A$3 fixed column and row (absolute reference)
-naming cells: names can be used as variables in a formula instead of lengthy
references
Conditional functions
IF (upto 7 nestings)
Implicit If functions: countif, sumif
Syntax = SUMIF(range,condition,sum_range)
LOOK UP functions
=VLOOKUP(lookup_value, table_array, column_index,match)
=HLOOKUP(lookup_value, table_array, row_index,match)
table_array The range reference or name of the lookup table.
column(row)_index ; The column (row) of the table from which the value is to be
returned.
Worksheet/Workbook Protection
It is possible to protect a workbook, a worksheet or parts of a worksheet. (Under
Review menu)
You can lock or hide formulas of parts of a worksheet by highlighting the cell range
then right mouse click, select Protection. Then after you still need to lock the
protection.
EXCEL Statistical utilities
Presentation of Quantitative data
Data classification, Types of charts and graphs, pivot tables
1
Adapted from Andreas Fring’s handout
LiSiz 2022 @Stats UZ
Program structures types
(i) sequential structures (line by line)
1 ...................
2 ...................
3 ...................
(ii) control structures
· branching or decision structures
NOTE: It is useful to draw flow charts in order to keep track of the logic of the
program structure. You do not need to write all comments in detail, but it suffices to
write general statements in words.
LiSiz 2022 @Stats UZ
General structure of a sequential User Defined Function
Function name [(arguments) [As type] ] [As type]
[statements]
[name = expression]
[Exit Function]
[statements]
[name = expression]
End Function
- name the name of the function
- arguments a list of input value (just like for built-in functions)
- type the data type which will be returned by the function
- statements valid VBA commands
- expression an arithmetic expression assigned to the function name, which will be returned
· Everything in bold has to be typed exactly as above.
· Everything in squared brackets [...] is optional.
· Each statement has to begin in a new line.
· In case the statement is longer than the line you can split it by typing “ _” (i.e. space
and underscore).
· A program (function) is read from top to bottom, that is each line is executed after
the next. There might be branches, loops etc which you can design.
· When End Function or Exit Function is reached the calculation terminates and the
value last assigned to the function´s name is returned.
- An assignment is done by an equation, which has to be read from the right to the left,
i.e. the value on the right hand side of the equation is assigned to the name on the left
hand side · The arguments are the Input and the function name contains the Output.
Examples
(i)Function F(x)
F = 3 * x + 10
End Function
You can now use this function on an Excel worksheet in the same way as you use a
built-in function, e.g. “=F(5)” would return 25
(ii) Function FF(x)
b=2*x
FF = b + 5
End Function
The variable b only exists temporarily inside the function FF.
LiSiz 2022 @Stats UZ
(iii) Function G(x,y,z)
G = y*x + z
End Function
As for built-in functions you can have more than one input variable (argument).
(iv) Function Q(a,b,c,x)
' quadratic equation
Q = a*x^2 + b*x +c
End Function
You can add comments to enhance the readability. VBA does not execute text
following a single quote. “=Q(2,4,5,3)” returns 35 ( 2*3^2+4*3+5)
(v) Function S(x, y, z)
S = 2 * Application.WorksheetFunction. FunctionName (x, y, z)
End Function
You can use Excel built-in functions inside user defined functions e.g. FunctionName
= SUM. “=S(1,2,3)” will return 12
Naming your User defined functions
- The first character in the name has to be a letter.
- The names are not case sensitive.
- Names are not allowed to contain spaces, @, $, #,... or be identical to VBA
commands.
Errors on debugging
- Inevitably you will make some mistakes either just typos or
structural ones and you need some strategy to eliminate them.
- Some mistakes block the entire WS, e.g. suppose you type:
Function Err(x)
Err = 2 * Sqr (Here the brackets are missing in Sqr)
End Function
- Call this function on the WS (Recalculation of the WS is F9) and an error message
will be displayed : Left mouse click on OK and the mistake will be highlighted then
Unlock with “Reset”