SlideShare a Scribd company logo
SPREADSHEETS
OBJECTIVES
 To Learn all features of spreadsheets
 To Understand spread sheets terminologies
 To Use of formulas
 To Use of functions
 To Learn data manipulation among others
INTRODUCTION TO SPREAD
SHEETS
• A modern spreadsheet file consists of multiple
worksheets (usually called by the shorter name
sheets) that make up one workbook, with each
file being one workbook.
Primary function of Spreadsheet
• Spreadsheet - Primary function is to perform
calculations that may involve mathematical,
financial, or scientific data.
TYPICAL USES FOR SPREADSHEETS
 Budgets
 ~ Financial/Accounting Reports
 ~ Taxes
 ~ Students' Grades
 ~ Columns of Text
 ~ Graphs
MICROSOFT EXCEL
• Microsoft Excel is a commercial spreadsheet application
written and distributed by Microsoft for Microsoft Windows and
Mac OS X.
It features calculation, graphing tools, pivot tables, and a macro
programming language called Visual Basic for Applications. It
has been a very widely applied spreadsheet for these platforms.
• MS. Excel is the program we use to work with spreadsheets.
• An Excel file consists of two parts:  worksheets and workbooks.
• Worksheets are the actual spreadsheets that contain the data in
which you can organize and manipulate.
• Workbooks are the entire Excel files.  Workbooks can have
multiple worksheets or as few as one.  Each worksheet in a
workbook will have a unique name that can be accessed on the
tabs at the bottom of the screen.
PARTS OF THE SPREADSHEET
~ Columns
• - Vertical areas of the spreadsheet
• - They are labeled A-Z, AA-AZ, BA-BZ, etc...
• - 256 Columns in MS Excel
~ Rows
• - Horizontal areas of the spreadsheet
• - Labeled Numerically 1…….65,536 Rows in MS
Excel
~ Cell
• - Rectangular area in which a row and column
intersect. Cells are specified by the intersection
of the column letter and row number such as F9.
DEFINITIONS
~ Cell Address
• - A description of which row and
column intersect to form the cell. Cell
A1 is the address for the first cell in
the first row and first column
~ Name Box
• - The area that displays the address
of the active cell
~ Formula Bar
• - The area that displays the contents
of the active cell. You may edit your
data here
• Ranges; which are a group of cells
specified by the address of the upper
left cell and lower right cell
separated by a full colon.
~ Active Cell
• - The selected cell with
the heavy border
around it
TRIAL EXERCISE
 Put the field names in topmost row of the
worksheet.
 Do not have any blank rows or columns.
SPREADSHEET FORMULAS
 * An instruction to calculate a number
 * The formula is entered in the cell where the
answer should appear
 * After you hit the "Enter" key, the answer is
displayed in the active cell while the formula
remains visible in the formula bar
ARITHMETIC OPERATIONS IN CELLS
 In the event that one needs to weight a cell
differently, arithmetic operators can be used
with cell addresses to accomplish this task.
The operators are:
 Addition +
 Multiplication * (shift-* asterisk on the
keyboard)
 Subtraction -
 Division /
 Exponentiation ^ (shift-6 on the keyboard)
*The four math operations are: + for add; - for
subtract; * for multiplication; / for divide
TWO RULES WHEN CREATING
FORMULAS:
 ~ A formula always starts with =
 ~ A formula uses cell addresses, not the values
themselves. (This way, if the values in the cell
locations change, the answer will automatically
change.)
 Eg =j1+L2
 values, such as 2, 9.14 or 6.67E-11;
 References to other cells, such as, A1 for a single cell
or B1:B3 for a range;
 arithmetic operators, such as +, -, *, /, and others;
 relational operators, such as >=, <, and others; and,
 Functions, such as SUM(), TAN(),MIN(),MAX() and
many others.
SPREADSHEET FUNCTIONS
 * Built-in formulas that perform special calculations
automatically.
 - Sum functions add up a column of figures.
 - Average functions average a group of numbers. 
(AVERAGE) eg =averagr(F2:H2) then press enter after
completing the formula.
 Note that there are NO spaces in a formula. The
average function averages all the cells from F2 to H2
is called a "range." A range includes all of the cells
between the cells. A range can be a portion of a row, a
portion of a column, or a rectangular area of a
spreadsheet.
 :
COPYING A FORMULA DOWN A COLUMN
To copy the formula down the Avg column there
are at least three methods
using the fill handle
 Click in M2.
 Roll the cursor over the lower right hand
corner of M2, directly over the small black
square . The cursor should turn into a solid
black bold plus sign. The small black square is
called the smart-fill control or the "fill handle".
Click directly on the small black square and
drag down to fill the formula down the Avg
column
SECOND WAY
 Click in the center of M2, drag down to the
bottom of the student list. Then:
 a. Use the key combination Control-D to fill
down. This invokes a non-smart fill down and is
useful when Excel insists on creating an
undesired series of increasing values during a
smart-fill. OR
b. Use the menu sequence Edit: Fill: Down
THIRD WAY
For those who prefer the keyboard:
 Click in the center of M2. Release the mouse
button. Hold down the shift key and use the
down arrow to select the portion of the Avg
column with the student list. Then:
 a. Use the key combination Control-D to fill
down. This invokes a non-smart fill down and is
useful when Excel insists on creating an
undesired series of increasing values during a
smart-fill.
 OR
b. Use the menu sequence Edit: Fill: Down
FUNCTIONS
 Count functions count all the blank spaces in
the range.
 - Minimum functions indicate the lowest value
in the range. (MIN)
 - Maximum functions indicate the highest
value in the range.  (MAX)
 - The IF STATEMENT is a logical function
which sets up a conditional statement to test
data.  the truth or falsity of the condition will
determine the results of the statement. 
 * Functions always start with =
 Functions are built in formulas that perform
special calculations automatically.
 * Functions may be used by itself or combined
with other functions.  Excel provides many
functions, some of which are used for
statistical and financial analysis, while others
are used in database operations.  A function
may be entered using the keyboard, the mouse
or a combination of both.  
 * Example:  to add cells=B2 + B3 + B4 + B5 +
B6 you could use the function:
 =SUM(B2:B:6)
OTHER FUNCTIONS
 Functions that could be put in M2 (or any other
column to the right) and filled down include:
 =average(J2:L2) Finds the mean of the values in the
range.
=count(J2:L2) The number of cells containing values in
the range.
=max(J2:L2) Displays the smallest value in the range.
=median(J2:L2) Returns the median of the range.
=min(J2:L2) Displays the smallest value in the range.
 =mode(J2:L2) Returns the most common value in a
range.
=stdev(J2:L2) Displays the standard deviation of the
range.
=sum(J2:L2) Returns the sum of the values in a range.
FUNCTIONS…
 Suppose test T1 and test T2 are worth 25% each, and
test T3 is 50% of the student’s grade. Then the
following formula would be used in M2:
 =0.25*J2+0.25*K2+0.50*L2
 Type this formula in M2 and fill down. Do not forget
the leading equals sign! Remember, there are NO
spaces in any formula.
 Mathematical operators can be combined with
functions to perform complex calculations. Suppose
that one wanted to toss out the lowest test and find
the average of the remaining two tests. The formula to
do this would be:
 =(sum(J2:L2)-min(J2:L2))/2
FUNCTIONS…
 Enter this formula into M2 and fill down.
 This formula would work for three tests, it could
be generalized to work for any number of tests
with the following formula:
 =(sum(J2:L2)-min(J2:L2))/(count(J2:L2)-1)
 Enter this formula into M2 and fill down. Be
careful when typing parentheses!

More Related Content

What's hot

Excel formula
Excel formulaExcel formula
Errors in ms excel
Errors in ms excelErrors in ms excel
Errors in ms excel
Nikita Arora
 
MS-Excel Formulas and Functions
MS-Excel Formulas and FunctionsMS-Excel Formulas and Functions
MS-Excel Formulas and Functions
P. SUNDARI ARUN
 
Real World Excel Formulas
Real World Excel FormulasReal World Excel Formulas
Etech. mitch. [autosaved]
Etech. mitch. [autosaved]Etech. mitch. [autosaved]
Etech. mitch. [autosaved]
MaridelBajeta
 
Excel for research
Excel  for researchExcel  for research
Excel for research
JamalBhai
 
Formulas and functions
Formulas and functions Formulas and functions
Formulas and functions
ManishTiwari326
 
Functions in MS Excel
Functions in MS ExcelFunctions in MS Excel
Functions in MS Excel
Muhammad Yasir Bhutta
 
Formulas and functions - By Amresh Tiwari
Formulas and functions - By Amresh TiwariFormulas and functions - By Amresh Tiwari
Formulas and functions - By Amresh Tiwari
Amresh Tiwari
 
Excel Tutorials - Random Value Selection from a List
Excel Tutorials - Random Value Selection from a ListExcel Tutorials - Random Value Selection from a List
Excel Tutorials - Random Value Selection from a List
Merve Nur Taş
 
Excel Tutorials - VLOOKUP and HLOOKUP Functions
Excel Tutorials - VLOOKUP and HLOOKUP FunctionsExcel Tutorials - VLOOKUP and HLOOKUP Functions
Excel Tutorials - VLOOKUP and HLOOKUP Functions
Merve Nur Taş
 
Excel functions formulas
Excel functions formulasExcel functions formulas
Excel functions formulasLearnIT@UD
 
Formula in MS Excel
Formula in MS ExcelFormula in MS Excel
Formula in MS Excel
Muhammad Yasir Bhutta
 
Excel Formula and Function Basics
Excel Formula and Function BasicsExcel Formula and Function Basics
Excel Formula and Function Basicsguest1c3d8c6
 
MS-EXCEL Assignment Help
MS-EXCEL Assignment HelpMS-EXCEL Assignment Help
MS-EXCEL Assignment Help
Rahul Kataria
 
Working on MS-Excel 'FORMULA TAB'
Working on MS-Excel 'FORMULA TAB'Working on MS-Excel 'FORMULA TAB'
Working on MS-Excel 'FORMULA TAB'
Pranav Kumar
 
Spreadsheet advanced functions ppt (2)
Spreadsheet advanced functions ppt (2)Spreadsheet advanced functions ppt (2)
Spreadsheet advanced functions ppt (2)
Tammy Carter
 

What's hot (20)

Excel formula
Excel formulaExcel formula
Excel formula
 
Errors in ms excel
Errors in ms excelErrors in ms excel
Errors in ms excel
 
Ms excel ppt
Ms   excel pptMs   excel ppt
Ms excel ppt
 
MS-Excel Formulas and Functions
MS-Excel Formulas and FunctionsMS-Excel Formulas and Functions
MS-Excel Formulas and Functions
 
Real World Excel Formulas
Real World Excel FormulasReal World Excel Formulas
Real World Excel Formulas
 
Etech. mitch. [autosaved]
Etech. mitch. [autosaved]Etech. mitch. [autosaved]
Etech. mitch. [autosaved]
 
Excel for research
Excel  for researchExcel  for research
Excel for research
 
Formulas and functions
Formulas and functions Formulas and functions
Formulas and functions
 
Functions in MS Excel
Functions in MS ExcelFunctions in MS Excel
Functions in MS Excel
 
Formulas and functions - By Amresh Tiwari
Formulas and functions - By Amresh TiwariFormulas and functions - By Amresh Tiwari
Formulas and functions - By Amresh Tiwari
 
Excel Tutorials - Random Value Selection from a List
Excel Tutorials - Random Value Selection from a ListExcel Tutorials - Random Value Selection from a List
Excel Tutorials - Random Value Selection from a List
 
Excel Tutorials - VLOOKUP and HLOOKUP Functions
Excel Tutorials - VLOOKUP and HLOOKUP FunctionsExcel Tutorials - VLOOKUP and HLOOKUP Functions
Excel Tutorials - VLOOKUP and HLOOKUP Functions
 
Excel functions formulas
Excel functions formulasExcel functions formulas
Excel functions formulas
 
Formula in MS Excel
Formula in MS ExcelFormula in MS Excel
Formula in MS Excel
 
Excel Formula and Function Basics
Excel Formula and Function BasicsExcel Formula and Function Basics
Excel Formula and Function Basics
 
Chapter.05
Chapter.05Chapter.05
Chapter.05
 
MS-EXCEL Assignment Help
MS-EXCEL Assignment HelpMS-EXCEL Assignment Help
MS-EXCEL Assignment Help
 
Advanced Excel ppt
Advanced Excel pptAdvanced Excel ppt
Advanced Excel ppt
 
Working on MS-Excel 'FORMULA TAB'
Working on MS-Excel 'FORMULA TAB'Working on MS-Excel 'FORMULA TAB'
Working on MS-Excel 'FORMULA TAB'
 
Spreadsheet advanced functions ppt (2)
Spreadsheet advanced functions ppt (2)Spreadsheet advanced functions ppt (2)
Spreadsheet advanced functions ppt (2)
 

Viewers also liked

August 9 et
August 9  etAugust 9  et
August 9 et
Live Angga
 
Webdesign
WebdesignWebdesign
Webdesign
Live Angga
 
Hyperlinking
HyperlinkingHyperlinking
Hyperlinking
Live Angga
 
Sketch up
Sketch upSketch up
Sketch up
Live Angga
 
Part four designing_a_company_brochure
Part four designing_a_company_brochurePart four designing_a_company_brochure
Part four designing_a_company_brochure
BBAMUMU2014
 
Pledge of comitment
Pledge of comitmentPledge of comitment
Pledge of comitment
Live Angga
 
August 3, 2016 et
August 3, 2016 etAugust 3, 2016 et
August 3, 2016 et
Live Angga
 
August 8 reporting day1
August 8  reporting day1August 8  reporting day1
August 8 reporting day1
Live Angga
 
Part four mail_merging
Part four mail_mergingPart four mail_merging
Part four mail_merging
BBAMUMU2014
 
Contextualized online search and research skill
Contextualized online search and research skillContextualized online search and research skill
Contextualized online search and research skill
Angela Giva
 
Module 1( final 2) quadtraic equations and inequalities jq
Module 1( final 2) quadtraic equations and inequalities jqModule 1( final 2) quadtraic equations and inequalities jq
Module 1( final 2) quadtraic equations and inequalities jq
Live Angga
 
Online research and research skills
Online research and research skillsOnline research and research skills
Online research and research skills
Live Angga
 
Presentation skills
Presentation skillsPresentation skills
Presentation skills
Dennis Cleofe
 
ICT Today
ICT TodayICT Today
ICT Today
Jess Henson
 
Infographics
InfographicsInfographics
Infographics
Live Angga
 
Quadrilaterals
QuadrilateralsQuadrilaterals
Quadrilaterals
Live Angga
 
Stem basic calculus cg 1
Stem basic calculus cg 1Stem basic calculus cg 1
Stem basic calculus cg 1
Live Angga
 
Empowerment through technology
Empowerment through technologyEmpowerment through technology
Empowerment through technology
Steven Parker
 
Empowerment Technology
Empowerment TechnologyEmpowerment Technology
Empowerment Technology
Reygie Fabro
 

Viewers also liked (20)

DRAMA
DRAMADRAMA
DRAMA
 
August 9 et
August 9  etAugust 9  et
August 9 et
 
Webdesign
WebdesignWebdesign
Webdesign
 
Hyperlinking
HyperlinkingHyperlinking
Hyperlinking
 
Sketch up
Sketch upSketch up
Sketch up
 
Part four designing_a_company_brochure
Part four designing_a_company_brochurePart four designing_a_company_brochure
Part four designing_a_company_brochure
 
Pledge of comitment
Pledge of comitmentPledge of comitment
Pledge of comitment
 
August 3, 2016 et
August 3, 2016 etAugust 3, 2016 et
August 3, 2016 et
 
August 8 reporting day1
August 8  reporting day1August 8  reporting day1
August 8 reporting day1
 
Part four mail_merging
Part four mail_mergingPart four mail_merging
Part four mail_merging
 
Contextualized online search and research skill
Contextualized online search and research skillContextualized online search and research skill
Contextualized online search and research skill
 
Module 1( final 2) quadtraic equations and inequalities jq
Module 1( final 2) quadtraic equations and inequalities jqModule 1( final 2) quadtraic equations and inequalities jq
Module 1( final 2) quadtraic equations and inequalities jq
 
Online research and research skills
Online research and research skillsOnline research and research skills
Online research and research skills
 
Presentation skills
Presentation skillsPresentation skills
Presentation skills
 
ICT Today
ICT TodayICT Today
ICT Today
 
Infographics
InfographicsInfographics
Infographics
 
Quadrilaterals
QuadrilateralsQuadrilaterals
Quadrilaterals
 
Stem basic calculus cg 1
Stem basic calculus cg 1Stem basic calculus cg 1
Stem basic calculus cg 1
 
Empowerment through technology
Empowerment through technologyEmpowerment through technology
Empowerment through technology
 
Empowerment Technology
Empowerment TechnologyEmpowerment Technology
Empowerment Technology
 

Similar to Spreadsheets[1]

'Spreadsheet'
'Spreadsheet''Spreadsheet'
'Spreadsheet'
Rashmi Gowda
 
ms-excel.pptx
ms-excel.pptxms-excel.pptx
ms-excel.pptx
Moises Tenyosa
 
Excel
ExcelExcel
Useful Excel Functions & Formula Used everywhere.pptx
Useful Excel Functions & Formula Used everywhere.pptxUseful Excel Functions & Formula Used everywhere.pptx
Useful Excel Functions & Formula Used everywhere.pptx
vanshikatyagi74
 
Use of Excel Spreadsheets in Computing Grades
Use of Excel Spreadsheets in Computing GradesUse of Excel Spreadsheets in Computing Grades
Use of Excel Spreadsheets in Computing Grades
Elli May Cañas
 
MIRCROSOFT EXCEL- brief and useful for beginners by RISHABH BANSAL
MIRCROSOFT EXCEL- brief and useful for beginners by RISHABH BANSALMIRCROSOFT EXCEL- brief and useful for beginners by RISHABH BANSAL
MIRCROSOFT EXCEL- brief and useful for beginners by RISHABH BANSAL
Rishabh Bansal
 
Introduction to micro soft Training ms Excel.ppt
Introduction to micro soft Training ms Excel.pptIntroduction to micro soft Training ms Excel.ppt
Introduction to micro soft Training ms Excel.ppt
dejene3
 
3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.ppt3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.ppt
JosephIThomas
 
3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.ppt3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.ppt
AllanGuevarra1
 
Simple formulas excel
Simple formulas excelSimple formulas excel
Simple formulas excel
Malika khalil
 
functionsandformulas-131221213835-phpapp01.pdf
functionsandformulas-131221213835-phpapp01.pdffunctionsandformulas-131221213835-phpapp01.pdf
functionsandformulas-131221213835-phpapp01.pdf
FranzLawrenzDeTorres1
 
Functions and formulas of ms excel
Functions and formulas of ms excelFunctions and formulas of ms excel
Functions and formulas of ms excel
madhuparna bhowmik
 
Chapter 4
Chapter 4Chapter 4
Chapter 4
lurdhu agnes
 
Microsoft Excel Training
Microsoft Excel TrainingMicrosoft Excel Training
Microsoft Excel Training
HudaRaghibKadhim
 
Spreadsheet new
Spreadsheet newSpreadsheet new
Spreadsheet new
ShouaQureshi
 
ch 9, Electronic Spreadsheet,Basic Information Technology-Uzair Javed
ch 9, Electronic Spreadsheet,Basic Information Technology-Uzair Javedch 9, Electronic Spreadsheet,Basic Information Technology-Uzair Javed
ch 9, Electronic Spreadsheet,Basic Information Technology-Uzair JavedUzair Javed
 

Similar to Spreadsheets[1] (20)

'Spreadsheet'
'Spreadsheet''Spreadsheet'
'Spreadsheet'
 
ms-excel.pptx
ms-excel.pptxms-excel.pptx
ms-excel.pptx
 
Excel
ExcelExcel
Excel
 
Useful Excel Functions & Formula Used everywhere.pptx
Useful Excel Functions & Formula Used everywhere.pptxUseful Excel Functions & Formula Used everywhere.pptx
Useful Excel Functions & Formula Used everywhere.pptx
 
Use of Excel Spreadsheets in Computing Grades
Use of Excel Spreadsheets in Computing GradesUse of Excel Spreadsheets in Computing Grades
Use of Excel Spreadsheets in Computing Grades
 
MIRCROSOFT EXCEL- brief and useful for beginners by RISHABH BANSAL
MIRCROSOFT EXCEL- brief and useful for beginners by RISHABH BANSALMIRCROSOFT EXCEL- brief and useful for beginners by RISHABH BANSAL
MIRCROSOFT EXCEL- brief and useful for beginners by RISHABH BANSAL
 
Introduction to micro soft Training ms Excel.ppt
Introduction to micro soft Training ms Excel.pptIntroduction to micro soft Training ms Excel.ppt
Introduction to micro soft Training ms Excel.ppt
 
3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.ppt3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.ppt
 
3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.ppt3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.ppt
 
Simple formulas excel
Simple formulas excelSimple formulas excel
Simple formulas excel
 
functionsandformulas-131221213835-phpapp01.pdf
functionsandformulas-131221213835-phpapp01.pdffunctionsandformulas-131221213835-phpapp01.pdf
functionsandformulas-131221213835-phpapp01.pdf
 
Functions and formulas of ms excel
Functions and formulas of ms excelFunctions and formulas of ms excel
Functions and formulas of ms excel
 
Spreadhsheets 1
Spreadhsheets 1Spreadhsheets 1
Spreadhsheets 1
 
Spreadhsheets 1
Spreadhsheets 1Spreadhsheets 1
Spreadhsheets 1
 
Chapter 4
Chapter 4Chapter 4
Chapter 4
 
Microsoft Excel Training
Microsoft Excel TrainingMicrosoft Excel Training
Microsoft Excel Training
 
Spreadsheet new
Spreadsheet newSpreadsheet new
Spreadsheet new
 
Excel Chapter 2
Excel Chapter 2Excel Chapter 2
Excel Chapter 2
 
ch 9, Electronic Spreadsheet,Basic Information Technology-Uzair Javed
ch 9, Electronic Spreadsheet,Basic Information Technology-Uzair Javedch 9, Electronic Spreadsheet,Basic Information Technology-Uzair Javed
ch 9, Electronic Spreadsheet,Basic Information Technology-Uzair Javed
 
ch 9
ch 9ch 9
ch 9
 

More from BBAMUMU2014

Part two basic_knowledge_and_skills[1]
Part two basic_knowledge_and_skills[1]Part two basic_knowledge_and_skills[1]
Part two basic_knowledge_and_skills[1]
BBAMUMU2014
 
Part three the_internet[1]
Part three the_internet[1]Part three the_internet[1]
Part three the_internet[1]
BBAMUMU2014
 
Part six microsoft_power_point_presentatio
Part six microsoft_power_point_presentatioPart six microsoft_power_point_presentatio
Part six microsoft_power_point_presentatio
BBAMUMU2014
 
Part one introduction_to_computer_2010[1]
Part one introduction_to_computer_2010[1]Part one introduction_to_computer_2010[1]
Part one introduction_to_computer_2010[1]
BBAMUMU2014
 
Lecture4 working with_word_processing
Lecture4 working with_word_processingLecture4 working with_word_processing
Lecture4 working with_word_processing
BBAMUMU2014
 
Lecture 7 creating_charts1
Lecture 7 creating_charts1Lecture 7 creating_charts1
Lecture 7 creating_charts1
BBAMUMU2014
 
Lecture 6 spreadsheets
Lecture 6 spreadsheetsLecture 6 spreadsheets
Lecture 6 spreadsheets
BBAMUMU2014
 

More from BBAMUMU2014 (7)

Part two basic_knowledge_and_skills[1]
Part two basic_knowledge_and_skills[1]Part two basic_knowledge_and_skills[1]
Part two basic_knowledge_and_skills[1]
 
Part three the_internet[1]
Part three the_internet[1]Part three the_internet[1]
Part three the_internet[1]
 
Part six microsoft_power_point_presentatio
Part six microsoft_power_point_presentatioPart six microsoft_power_point_presentatio
Part six microsoft_power_point_presentatio
 
Part one introduction_to_computer_2010[1]
Part one introduction_to_computer_2010[1]Part one introduction_to_computer_2010[1]
Part one introduction_to_computer_2010[1]
 
Lecture4 working with_word_processing
Lecture4 working with_word_processingLecture4 working with_word_processing
Lecture4 working with_word_processing
 
Lecture 7 creating_charts1
Lecture 7 creating_charts1Lecture 7 creating_charts1
Lecture 7 creating_charts1
 
Lecture 6 spreadsheets
Lecture 6 spreadsheetsLecture 6 spreadsheets
Lecture 6 spreadsheets
 

Recently uploaded

Overview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with MechanismOverview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with Mechanism
DeeptiGupta154
 
Introduction to Quality Improvement Essentials
Introduction to Quality Improvement EssentialsIntroduction to Quality Improvement Essentials
Introduction to Quality Improvement Essentials
Excellence Foundation for South Sudan
 
The approach at University of Liverpool.pptx
The approach at University of Liverpool.pptxThe approach at University of Liverpool.pptx
The approach at University of Liverpool.pptx
Jisc
 
The Art Pastor's Guide to Sabbath | Steve Thomason
The Art Pastor's Guide to Sabbath | Steve ThomasonThe Art Pastor's Guide to Sabbath | Steve Thomason
The Art Pastor's Guide to Sabbath | Steve Thomason
Steve Thomason
 
Home assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdfHome assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdf
Tamralipta Mahavidyalaya
 
Polish students' mobility in the Czech Republic
Polish students' mobility in the Czech RepublicPolish students' mobility in the Czech Republic
Polish students' mobility in the Czech Republic
Anna Sz.
 
How to Split Bills in the Odoo 17 POS Module
How to Split Bills in the Odoo 17 POS ModuleHow to Split Bills in the Odoo 17 POS Module
How to Split Bills in the Odoo 17 POS Module
Celine George
 
Template Jadual Bertugas Kelas (Boleh Edit)
Template Jadual Bertugas Kelas (Boleh Edit)Template Jadual Bertugas Kelas (Boleh Edit)
Template Jadual Bertugas Kelas (Boleh Edit)
rosedainty
 
How to Create Map Views in the Odoo 17 ERP
How to Create Map Views in the Odoo 17 ERPHow to Create Map Views in the Odoo 17 ERP
How to Create Map Views in the Odoo 17 ERP
Celine George
 
Welcome to TechSoup New Member Orientation and Q&A (May 2024).pdf
Welcome to TechSoup   New Member Orientation and Q&A (May 2024).pdfWelcome to TechSoup   New Member Orientation and Q&A (May 2024).pdf
Welcome to TechSoup New Member Orientation and Q&A (May 2024).pdf
TechSoup
 
Ethnobotany and Ethnopharmacology ......
Ethnobotany and Ethnopharmacology ......Ethnobotany and Ethnopharmacology ......
Ethnobotany and Ethnopharmacology ......
Ashokrao Mane college of Pharmacy Peth-Vadgaon
 
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCECLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
BhavyaRajput3
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
Jisc
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
EverAndrsGuerraGuerr
 
Unit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdfUnit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdf
Thiyagu K
 
Model Attribute Check Company Auto Property
Model Attribute  Check Company Auto PropertyModel Attribute  Check Company Auto Property
Model Attribute Check Company Auto Property
Celine George
 
Instructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptxInstructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptx
Jheel Barad
 
1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx
JosvitaDsouza2
 
Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345
beazzy04
 
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
MysoreMuleSoftMeetup
 

Recently uploaded (20)

Overview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with MechanismOverview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with Mechanism
 
Introduction to Quality Improvement Essentials
Introduction to Quality Improvement EssentialsIntroduction to Quality Improvement Essentials
Introduction to Quality Improvement Essentials
 
The approach at University of Liverpool.pptx
The approach at University of Liverpool.pptxThe approach at University of Liverpool.pptx
The approach at University of Liverpool.pptx
 
The Art Pastor's Guide to Sabbath | Steve Thomason
The Art Pastor's Guide to Sabbath | Steve ThomasonThe Art Pastor's Guide to Sabbath | Steve Thomason
The Art Pastor's Guide to Sabbath | Steve Thomason
 
Home assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdfHome assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdf
 
Polish students' mobility in the Czech Republic
Polish students' mobility in the Czech RepublicPolish students' mobility in the Czech Republic
Polish students' mobility in the Czech Republic
 
How to Split Bills in the Odoo 17 POS Module
How to Split Bills in the Odoo 17 POS ModuleHow to Split Bills in the Odoo 17 POS Module
How to Split Bills in the Odoo 17 POS Module
 
Template Jadual Bertugas Kelas (Boleh Edit)
Template Jadual Bertugas Kelas (Boleh Edit)Template Jadual Bertugas Kelas (Boleh Edit)
Template Jadual Bertugas Kelas (Boleh Edit)
 
How to Create Map Views in the Odoo 17 ERP
How to Create Map Views in the Odoo 17 ERPHow to Create Map Views in the Odoo 17 ERP
How to Create Map Views in the Odoo 17 ERP
 
Welcome to TechSoup New Member Orientation and Q&A (May 2024).pdf
Welcome to TechSoup   New Member Orientation and Q&A (May 2024).pdfWelcome to TechSoup   New Member Orientation and Q&A (May 2024).pdf
Welcome to TechSoup New Member Orientation and Q&A (May 2024).pdf
 
Ethnobotany and Ethnopharmacology ......
Ethnobotany and Ethnopharmacology ......Ethnobotany and Ethnopharmacology ......
Ethnobotany and Ethnopharmacology ......
 
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCECLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
 
Unit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdfUnit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdf
 
Model Attribute Check Company Auto Property
Model Attribute  Check Company Auto PropertyModel Attribute  Check Company Auto Property
Model Attribute Check Company Auto Property
 
Instructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptxInstructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptx
 
1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx
 
Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345
 
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
 

Spreadsheets[1]

  • 2. OBJECTIVES  To Learn all features of spreadsheets  To Understand spread sheets terminologies  To Use of formulas  To Use of functions  To Learn data manipulation among others
  • 3. INTRODUCTION TO SPREAD SHEETS • A modern spreadsheet file consists of multiple worksheets (usually called by the shorter name sheets) that make up one workbook, with each file being one workbook. Primary function of Spreadsheet • Spreadsheet - Primary function is to perform calculations that may involve mathematical, financial, or scientific data.
  • 4. TYPICAL USES FOR SPREADSHEETS  Budgets  ~ Financial/Accounting Reports  ~ Taxes  ~ Students' Grades  ~ Columns of Text  ~ Graphs
  • 5. MICROSOFT EXCEL • Microsoft Excel is a commercial spreadsheet application written and distributed by Microsoft for Microsoft Windows and Mac OS X. It features calculation, graphing tools, pivot tables, and a macro programming language called Visual Basic for Applications. It has been a very widely applied spreadsheet for these platforms. • MS. Excel is the program we use to work with spreadsheets. • An Excel file consists of two parts:  worksheets and workbooks. • Worksheets are the actual spreadsheets that contain the data in which you can organize and manipulate. • Workbooks are the entire Excel files.  Workbooks can have multiple worksheets or as few as one.  Each worksheet in a workbook will have a unique name that can be accessed on the tabs at the bottom of the screen.
  • 6. PARTS OF THE SPREADSHEET ~ Columns • - Vertical areas of the spreadsheet • - They are labeled A-Z, AA-AZ, BA-BZ, etc... • - 256 Columns in MS Excel ~ Rows • - Horizontal areas of the spreadsheet • - Labeled Numerically 1…….65,536 Rows in MS Excel ~ Cell • - Rectangular area in which a row and column intersect. Cells are specified by the intersection of the column letter and row number such as F9.
  • 7. DEFINITIONS ~ Cell Address • - A description of which row and column intersect to form the cell. Cell A1 is the address for the first cell in the first row and first column ~ Name Box • - The area that displays the address of the active cell ~ Formula Bar • - The area that displays the contents of the active cell. You may edit your data here • Ranges; which are a group of cells specified by the address of the upper left cell and lower right cell separated by a full colon. ~ Active Cell • - The selected cell with the heavy border around it
  • 8.
  • 9.
  • 10. TRIAL EXERCISE  Put the field names in topmost row of the worksheet.  Do not have any blank rows or columns.
  • 11. SPREADSHEET FORMULAS  * An instruction to calculate a number  * The formula is entered in the cell where the answer should appear  * After you hit the "Enter" key, the answer is displayed in the active cell while the formula remains visible in the formula bar
  • 12. ARITHMETIC OPERATIONS IN CELLS  In the event that one needs to weight a cell differently, arithmetic operators can be used with cell addresses to accomplish this task. The operators are:  Addition +  Multiplication * (shift-* asterisk on the keyboard)  Subtraction -  Division /  Exponentiation ^ (shift-6 on the keyboard) *The four math operations are: + for add; - for subtract; * for multiplication; / for divide
  • 13. TWO RULES WHEN CREATING FORMULAS:  ~ A formula always starts with =  ~ A formula uses cell addresses, not the values themselves. (This way, if the values in the cell locations change, the answer will automatically change.)  Eg =j1+L2
  • 14.  values, such as 2, 9.14 or 6.67E-11;  References to other cells, such as, A1 for a single cell or B1:B3 for a range;  arithmetic operators, such as +, -, *, /, and others;  relational operators, such as >=, <, and others; and,  Functions, such as SUM(), TAN(),MIN(),MAX() and many others.
  • 15. SPREADSHEET FUNCTIONS  * Built-in formulas that perform special calculations automatically.  - Sum functions add up a column of figures.  - Average functions average a group of numbers.  (AVERAGE) eg =averagr(F2:H2) then press enter after completing the formula.  Note that there are NO spaces in a formula. The average function averages all the cells from F2 to H2 is called a "range." A range includes all of the cells between the cells. A range can be a portion of a row, a portion of a column, or a rectangular area of a spreadsheet.  :
  • 16. COPYING A FORMULA DOWN A COLUMN To copy the formula down the Avg column there are at least three methods using the fill handle  Click in M2.  Roll the cursor over the lower right hand corner of M2, directly over the small black square . The cursor should turn into a solid black bold plus sign. The small black square is called the smart-fill control or the "fill handle". Click directly on the small black square and drag down to fill the formula down the Avg column
  • 17. SECOND WAY  Click in the center of M2, drag down to the bottom of the student list. Then:  a. Use the key combination Control-D to fill down. This invokes a non-smart fill down and is useful when Excel insists on creating an undesired series of increasing values during a smart-fill. OR b. Use the menu sequence Edit: Fill: Down
  • 18. THIRD WAY For those who prefer the keyboard:  Click in the center of M2. Release the mouse button. Hold down the shift key and use the down arrow to select the portion of the Avg column with the student list. Then:  a. Use the key combination Control-D to fill down. This invokes a non-smart fill down and is useful when Excel insists on creating an undesired series of increasing values during a smart-fill.  OR b. Use the menu sequence Edit: Fill: Down
  • 19. FUNCTIONS  Count functions count all the blank spaces in the range.  - Minimum functions indicate the lowest value in the range. (MIN)  - Maximum functions indicate the highest value in the range.  (MAX)  - The IF STATEMENT is a logical function which sets up a conditional statement to test data.  the truth or falsity of the condition will determine the results of the statement.   * Functions always start with =
  • 20.  Functions are built in formulas that perform special calculations automatically.  * Functions may be used by itself or combined with other functions.  Excel provides many functions, some of which are used for statistical and financial analysis, while others are used in database operations.  A function may be entered using the keyboard, the mouse or a combination of both.    * Example:  to add cells=B2 + B3 + B4 + B5 + B6 you could use the function:  =SUM(B2:B:6)
  • 21. OTHER FUNCTIONS  Functions that could be put in M2 (or any other column to the right) and filled down include:  =average(J2:L2) Finds the mean of the values in the range. =count(J2:L2) The number of cells containing values in the range. =max(J2:L2) Displays the smallest value in the range. =median(J2:L2) Returns the median of the range. =min(J2:L2) Displays the smallest value in the range.  =mode(J2:L2) Returns the most common value in a range. =stdev(J2:L2) Displays the standard deviation of the range. =sum(J2:L2) Returns the sum of the values in a range.
  • 22. FUNCTIONS…  Suppose test T1 and test T2 are worth 25% each, and test T3 is 50% of the student’s grade. Then the following formula would be used in M2:  =0.25*J2+0.25*K2+0.50*L2  Type this formula in M2 and fill down. Do not forget the leading equals sign! Remember, there are NO spaces in any formula.  Mathematical operators can be combined with functions to perform complex calculations. Suppose that one wanted to toss out the lowest test and find the average of the remaining two tests. The formula to do this would be:  =(sum(J2:L2)-min(J2:L2))/2
  • 23. FUNCTIONS…  Enter this formula into M2 and fill down.  This formula would work for three tests, it could be generalized to work for any number of tests with the following formula:  =(sum(J2:L2)-min(J2:L2))/(count(J2:L2)-1)  Enter this formula into M2 and fill down. Be careful when typing parentheses!