Spreadsheet
Spreadsheet
Statistical analysis
Characteristics or features of spreadsheets
(a)It is made of rows and columns which intersect to form
Spreadsheets provide tools for statistical analysis and
cells. evaluation. Some of these tools include median,
(b)Columns are arranged vertically and are labeled using mean, average and mode among others.
alphabetical letters while rows are numbered progressively Accounting
starting from the first row. Accounting refers to the process of keeping financial
accounts statements. An account is a record of financial
(c)Every individual cell has a unique cell address used for
income and expenditure relating to a particular period.
identification. Spreadsheet contains functions for analyzing and
managing financial transactions making the work of an
accountant easier
Data Management
d)It contains inbuilt formulas known as functions that Data management allows a company to provide financial data and
advice to another organization for easier development of its
enable the user to quickly perform calculations.
business. Data management facilities available in spreadsheet
e)It allows presentation of information graphically using include; sorting, filtering, forms and sub-totals among others.
Forecasting (“What if” analysis)
charts. Forecasting is the process of predicting the future happenings.
Spreadsheet programs contain features that can be used to predict
f)They contain database tools such as forms. the future profitability of a company based on the current trend of
Examples of spreadsheet programs include: Microsoft events. These feature is referred to as “What if “. The “ What if “
(MS) Excel, Lotus 1-2-3, Quattro Pro, Multiplan and Super analysis uses automatic recalculation features to predict the results.
Calc among others.
1
9/25/2023
Cell Referencing
• A cell reference also called cell address consists of a column
letter and a row number that intersect to show the location
of a cell. A1
Relative cell reference: This type of reference
automatically changes the cell addresses of a formula
relative to the position of a cell where it is copied. For
example, if the formula =Sum(A1:C1) is written on cell D1
then copied to cell G1, the formula will automatically
change to =Sum(D1:F1)
2
9/25/2023
Mathematical operators
Excel uses standard operators for formulas, such as a plus
Entering data sign for addition (+), a minus sign for subtraction (-),
When data is typed on a cell, it is displayed in the an asterisk for multiplication (*), a forward slash for division
(/), and a caret (^) for exponents.
selected cell as well as the content box on the formula
bar. Operator Symbol Function
Plus + Adds all the numbers.
There are four cell data types in a spreadsheet namely: Minus - Subtracts numbers.
Labels. They are text or alphanumeric characters that Multiplication * Multiplies numbers
are entered in a cell which cannot be manipulated Division / Divides numbers
Parenthesis(brackets) () Encloses operands and operators to
mathematically. By default, all labels are aligned to the dictate the order of execution.
left of a cell. Note: The mathematical rule of BODMAS (bracket of division, multiplication, addition and subtraction)
determines the order in which an operator is executed and gives the product. It is also applicable in
spreadsheets.
i. Begin with an equal sign (=). A value formulae for calculating the total mark for Charity
ii. Contain mathematical operation such as +, -, / and * would be: =60+50+50. Other operators like *,-,/ can also be used
iii. Cell addresses that contain values. together with the values. Different operators can be used in the
Functions: They are inbuilt formulae that the user can quickly use to same formula for example the following is a valid formula
perform calculations automatically. Every function must have the =60+50-80*4/2
following components: NB: The main disadvantages of this type of formulae are that
i. Begin with an equal sign (=). they cannot be copied to other cells.
ii. The name of the function.
iii.Arguments or data range. The data range is enclosed in parenthesis or
brackets. It contains the cell addresses which have the information to
be manipulated mathematically. The addresses can be separated by
use of a colon or comma.
3
9/25/2023
Formulae using functions and cell reference (iii)Min: this function returns the smallestt value in a selected
Examples of functions:
They can be categorized as follows: Statistical, Logical range of cells. In the argument contains no value, this function
and Mathematical functions. returns a zero value. The syntax for this command is as follows:
Statistical: The following are examples under this =min(Arguments): The word Min refers to the function for
category.
(i) Average: This function provides the arithmetic mean computing the Smallest number in the list or range and the
of the values specified in block of cells. Cells in a block arguments are the operands. These operands can be actual
(range) that are empty are ignored and those that have values, cell reference separated by commas or a range of cells.
zero values are included are included in the average. The
syntax for this command is as follows: The following are valid examples of the Min function.
=Average(Arguments): =Min(3,5,7,9,10,2,4), =Min(A1,A2,A4,A7), =Min(A1:A7)
4
9/25/2023
(vi) CountA: This function returns the number of elements iii) CountIf: Counts the number of cells within a specified
in a list of values or arrange. The syntax for this command block or range of cells that meet a given conditions or criteria.
is as follows: =Count(Arguments): The word Count refers to The general syntax is as follows:
the function for determining the number of values that are =CountIF(Range,”Condition”). Suppose B4 to H4 contains the
in the list or a range and the arguments are the operands. values 90, 30, 80, 40, 50, 90 and 20. To count all values greater
These operands can be actual values, cell reference than 60, the function would be:
separated by commas or a range of cells. The following are = CountIF (B4:H4,”>60”). This function would return a 3.
valid examples of the count function.
=Count(3,5,7,9,10,2,4,3), =Count(A1,A2,A4,A7),
=Count(A1:A7)
5
9/25/2023
(a)Mathematical
(i)Sum:
This function adds all the numbers in a specified range of cells.
The general syntax is =Sum(Number1, Number2…Number N).
Suppose B4 to H4 contains the values 90, 30, 80, 40, 50, 90 and
20. To sum all the values, the function would be: = Sum (B4:H4).
This function would return a 400. Alternatively using the actual
values the formula would take the following form and still give
the correct answer: = Sum (90, 30, 80, 40, 50, 90,20)
=SUM(A1:A7)
ii) Product:
This function multiplies all the numbers given as arguments. The general
syntax is =Product(Number 1, Number 2… Number n) where number1,
Number2 are 1 to 30 arguments which can be included in the function. EXCEL LOGICAL OPERATORS
Suppose B4 to H4 contains the values 9, 3, 8, 4, 5, 9 and 2. To multiply A logical operator is used in Excel to compare two
all the values, the function would be: = Product (B4:H4). This function values. Logical operators are sometimes called
would return a 77760. Alternatively using the actual values the formula
would take the following form and still give the correct answer: = Boolean operators because the result of the
Product (9, 3, 8, 4, 5, 9,2) comparison in any given case can only be either TRUE
or FALSE.
6
9/25/2023
The formula returns TRUE if a How To Create a VLOOKUP Between Two Sheets
Greater value in cell A1 is greater than a VLOOKUP is a function in Excel spreadsheets that can
> =A1>B1 locate specific information in cells.
than value in cell B1; otherwise it
People use this function to search through large data
returns FALSE.
across a worksheet of various worksheets so they can
The formula returns TRUE if a maintain organized data while still being able to access
Less than < =A1<B1 value in cell A1 is less than in pieces of information.
cell B1; FALSE otherwise.
o Samuel’s shop sold the following items in the month of December; Stimulator, smoother,
scissors, surgical spirit and shampoos. The quantities sold wave 550, 900, 2100, 900 and •Maintain organized data: A VLOOKUP between two spreadsheets allows
5000 respectively. you to organize your data as needed on separate sheets. Though you
i. Write an expression that can be used to obtain the total sales of the items sold in the might record data on these individual worksheets, a VLOOKUP allows you
ii. month of December. to still access and reference data across each.
iii. Write an expression that can be used to obtain the least quantity items sold in the •Connect data: Connecting data means you can view data in new ways as
month of December. you might arrange it in specific ways or include different information on
iv. Write down the formula that may be used to compute the highest quantity items sold in each sheet. Connecting unique data points can help you understand
the month information differently, which can inform your decision-making.
v. of December . •Search quickly: Rather than manually copying and pasting data
vi. Write a function that can be used to calculate average of items sold on month of across worksheets, VLOOKUP can help you quickly run queries and
December. populate data. This can save you time and prevent manual errors when
vii. Write a function that can be used to returns the middle value of items sold on month of navigating between sheets.
December •Update automatically: By using a VLOOKUP—instead of copying and
viii.Write a function that can be used to returns the number of qualities sold. pasting—the data in your destination cells update automatically if you
ix. Write a function that can be used to returns the most frequently appearing value. update the information in the source tables.
7
9/25/2023
Here are the steps for applying VLOOKUP between two • Perform VLOOKUP between workbooks
sheets: You can also perform a VLOOKUP between separate
1. Identify the components workbooks. To do so, include the name of the workbook
There are several components you want to include when and the sheet within the workbook where you wish to
performing the VLOOKUP function between sheets. gather data. Here’s the formula you can use:
Rather than including the table array as you would for VLOOKUP(lookup_value,
one sheet, you want to indicate the sheet range for the [workbook_name]Sheet_name!range, col_index_num,
data. Here is what the formula might look like: [range_lookup])
VLOOKUP(lookup_value, Sheet_name!range,
col_index_num, [range_lookup])