Handout M4
Handout M4
ICT Skills
ADVANCED SPREADSHEET SKILLS
What is Spreadsheet?
Excel is a spreadsheet program that allows you to store, organize, and analyze
information. While you may believe Excel is only used by certain people to process
complicated data, anyone can learn how to take advantage of the program's powerful
features. Whether you're keeping a budget, organizing a training log, or creating an
invoice, Excel makes it easy to work with different types of data.
In Excel, formulas are tools that you can use to edit, analyze, and create
calculations for worksheet data. One of the most valuable of this is the ability to store
math formulas in individual cells. A formula is simply a mathematical operation you
can perform in your worksheet. It is a sequence of values, cell references, names,
functions and operators that are contained in a cell. The formula produces a new
value from the existing value.
A formula can contain up to 1024 characters and must always start with an
equal sign (=). It can add, subtract, multiply or divide two numbers, displaying the
answer in a cell that you choose. When you type a formula into a cell, Excel makes
every attempt to display an answer to the formula.
Excel always knows what type of calculations you want to perform. When you
create a formula, you include symbols, called math operators, which tell Excel the
kind of math operations you want to perform.
Operator Description
: Reference operator (as in B3:D6)
, Argument separator
- Negation (as in -4)
% Percentage sign
^ Exponentiation
* and / Multiplication and division
+ and - Addition and subtraction
& Text concatenation (two strings
combined)
>,<, >=, <=, <> Comparison operators (greater than,
less than, greater than or equal to, less
than or equal to, not equal to)
In copying and moving formulas in a worksheet, Excel assumes that you want
to copy the formula’s calculation, and not the cells involved in the calculation. Using
cell referencing, you can control how formulas in a cell is displayed when you paste
or drag them to a new location. There two basic types of cell referencing: the relative
and the absolute cell references.
When you copy or move a formula, by default, Excel changes the cell
references in the copies of the formulas to reflect the relative location of the formula
from the cell references in the formula.
Using Absolute Referencing
You use an absolute reference formula when you want to anchor cell
references in a formula. In absolute referencing, the cell references always point to a
specific location regardless of where the formula is moved or copied. When you
anchor cell references, Excel will not adjust them when you copy the formula to a
different location in a worksheet.
Let us assume that we are going to sell milk tea with the following
information:
Production Information
Product Name/Brand: Fresh Buko Shake
Company/Group Name: Benz9 Center Inc.
Product Description:
Fresh Buko Shake is s special shake using real/fresh young coconuts fruit
and pure natural which is very good for the health.
2. Use the SUM formula to get the summation of the values from C4 to C8. The
SUM formula is =SUM(C4:C8). Type this on cell C9 as shown below:
4. Our estimated price is less profitable since the result is only Php 2.00. Let us
make an adjustment. Include the information below and deduct the Total from
the new estimated price.
5. The result is Php 8.00. this is now definitely
profitable at this price. However, this does
not guarantee our product success.
6. Save your file as M4 Cost Ingredients.xlsx.
4 NegOr_Q3_E-TECH_Module 4_V2
Start your product testing in your school by letting students, teachers, and or
personnel taste/test your product. Afterward, gather the data and place them in
Microsoft Excel. The following is a sample spreadsheet using the milk tea example.
Figure 1
Note: To change the orientation of a text, press Ctrl + 1. To open the Format Cells
dialog box > Alignment tab / under Orientation, specify the degrees you want.
Obviously this data is raw. Assuming that we have a huge sample, we have to
apply for several formulas to be able to easily analyze the result of this survey.
Example:
(Using figure 1, determine the average for quality.)
=AVERAGE(F5:24)
Determine the average for all your criteria and place them at the bottom of
your survey results similar to the screenshot below.
Next, determine how many people said YES or NO if they were satisfied with
the product or if they would recommend it to their friend. For this, we will use the
COUNTIF function.
Using the =COUNTIF function will allow us to count the number of cells that contains
something. However, in this case, we just need to count the ones that have YES or
NO in them. For this, we have to use the COUNTIF function.
Example:
Using Figure 1. The formula for getting the number of YES for the Satisfied
criteria is =COUNTIF (J5:J24, “YES”)
Determine the number of YES answers in both criteria and place them at the
bottom of your survey results similar to the screenshot below.
If you were to determine if you could sell your product or service to teachers
or students, you can use the AVERAGEIF Function.
AVERAGEIF
Using the AVERAGEIF, we can average a range if the cell beside it equals to
“teacher” and/ or “student”.
AVERAGEIF uses the following syntax:
= AVERAGEIF (range, criteria, average range)
Range – the range of cells where you want to look for the criteria.
Criteria – a value or label that determines if a cell is part of the range to be
averaged.
Average Range (optional) – the actual range of cells that will be averaged, if
omitted, the range will be used instead.
= AVERAGEIF(E5:E24,”Teacher”,F5:F24)
Spreadsheet Terminology