Data Analysis Spreadsheets
Data Analysis Spreadsheets
selected.
• While printing the spreadsheet:
o check the fields required to show
o if they want it to show formulae. (To show formulas instead of values,
select Show Formulas under the Formula Auditing section of the
Formulas tab.)
• To set a cell as currency →, click on the popup box in the Number section of
the Home tab → select Currency and pick the required symbol and number
of decimal places as specified on the paper.
• To colour a range of cells that contain specific values →, under the Styles
section in the Home tab →, click on the drop-down menu under Conditional
Formatting. Choose New Rule → Format only cells that contain. → add
the rule according to the instructions on the paper from the Format tab (ego:
less than 100, format: green). You can add more than one rule to a range of
cells by repeating the same steps for the new rule.
• When you are using another file as a source file (ego for a LOOKUP function),
make sure it is open until the end, or else the spreadsheet will no longer be
able to access that data.
o To make a cell reference absolute, press F4 while highlighting it
DESCRIPTION FORMULA
Add, Subtract,
=A1+B1
Multiply, Divide
SUM = Adding a
=SUM(A1:A4)
range of numbers
AVERAGE - Find
=AVERAGE(A1:A4)
the average
DESCRIPTION FORMULA
COUNT - Finding
how many
=COUNT(A1:A4)
numbers are in a
range
COUNTA -
Counting the
=COUNTA(A1:A4)
number of items
in a range
INT - Converts to
the lowest whole =INT(A1)
number
ROUND -
Rounding =ROUND(A1,2) The 2 is the number of decimal places
numbers
ROUNDUP -
Rounding =ROUNDUP(A1,2) The 2 is the number of decimal places
numbers up
ROUNDDOWN -
=ROUNDDOWN(A1,2) The 2 is the number of decimal
Rounding
places
numbers down
VLOOKUP -
=VLOOKUP(A1,$B$1:$C$8,2)A1 is the cell to
Looking up what
check$B$1:$C$8 is the array to look in2 is column 2
particular values
from $B$1:$C$8 meaning return the value in column 2 in
mean from a table
that section.
arranged vertically
HLOOKUP -
=HLOOKUP(A1,$B$1:$G$2,2)A1 is the cell to
Looking up what
check$B$1:$G$2 is the array to look in2 is row 2
particular values
DESCRIPTION FORMULA
mean from a table from $B$1:$G$2 meaning return the value in row 2 in that
arranged section.
horizontally
COUNTIF - Counts
the number of =COUNTIF(A2:A4,">4") Checks that cells have a value
cells in a range greater than 4=COUNTIF(A2:A4, A1) Checks that the cells
that satisfy the are equal to the value in cell A1
given criteria
=IF($B$1:$B$8=A1,”A”, IF($B$1:$B$8=A2,”B”,
IF($B$1:$B$8=A3,”C”,D)))IF the value in the range equals
Nested IF
A1 then write A, if it equals A2 write B, A3 write C and
none of them D
Average IF – it
searches for
criteria and makes =AVERAGEIF($D$4:$D$64,G3,$E$4:$E$64)$D$4:$D$64 is the
an average of the range, G3 is the criteria, $E$4:$E$64 is the average range
range according to
the criteria
SQRT – Square
=SQRT(B3)B3 is the number
root of a number