SlideShare a Scribd company logo
Use of Excel
Spreadsheets in
Computing Grades
PREPARED BY: ELLI MAY A. CAÑAS
OBJECTIVES:
After the presentation, we shall be able to:
◦Know the importance of excel in computing grades
◦Recognize some functions of each formulas in excel
◦Learn the application of the formulas
◦Distinguish some statistical functions and weighted averages
◦Identify some conditional calculations and Look Ups
Why do we use Excel in computing grades?
Ease of inputting grades
Use of formulas for automatic calculation of:
-point totals
-dropping lowest score from total
-averages
-final letter grade conversion
Easy import into other programs (Web, etc.)
What makes Excel so powerful?
Its ability to perform predetermined
calculations, automatically. This is
accomplished by developing formulas that do
the work for us.
It is important to understand how formulas work.
All formulas begin with “=”
Excel uses numbered rows and lettered columns for
reference in formulas.
FUNCTION WHAT IT DOES
SUM(range ) Adds a range of cells
AVERAGE( range) Calculates the average of a range of cells
MAX(range ) Returns the maximum value of a range
MIN(range ) Returns the minimum value of a range
COUNT(range ) Counts the number of values (cells containing numbers) in a range
COUNTA(range ) Counts the number of non-blank cells within a range
COUNTBLANK(range ) Counts the number of blank cells within a range
COUNTIF(range, "string" ) Counts the number of cells that are the same as a search string
STDEV(range) Calculate the standard deviation of a sample
SMALL(range, n) Returns the nth smallest number in the specified range
The table below lists several of the more common and
helpful statistical functions in Microsoft Excel.
Key Notes:
The SUM( ) and AVERAGE( ) functions are most frequently used.
The COUNT( ) function ignores blank cells and does not count cells
that contain text labels.
To count cells containing text, you must use the COUNTA( )
function.
Statistical Functions and Weighted Averages
A B C D E F
1 Student Exam 1 Exam 2 Exam 3 Final Average
2 Davis 88 73 85 78 =AVERAGE(B2:E2)
Excel has numerous functions to summarize data. The AVERAGE( ) function calculates the average of a group of
numbers. For example in cell F2 below, =AVERAGE(B2:E2) calculates the average for the student in row 2. This
AVERAGE( ) function assumes that all test scores are weighted equally. It also ignores blank cells; it does not
treat them as 0.
Weighted Averages
There are many methods to create a weighted average using formulas. For example, if you want to count each
test 20% and the final 40%, use the following formula:
=(B3*.20)+(C3*.20)+(D3*.20)+(E3*.40)
You can easily modify this formula to accommodate a different grading scheme.
A B C D E F
1 Student Exam 1 Exam 2 Exam 3 Final Average
2 Davis 88 73 85 78 =AVERAGE(B2:E2)
3 Johnson 52 71 65 67 =(B3*.20)+(C3*.20)+(D3*.20)+(E3*.40)
Dropping Low Scores
The MIN( ) function returns the smallest value in a range of cells. The formula in cell F4 above adds all test scores
for Smith then subtracts the minimum test score and divides the result by 3. This formula also assumes that all
scores are weighted equally. However, you can calculate a weighted average and drop a low score.
A B C D E F
1 Student Exam 1 Exam 2 Exam 3 Final Average
2 Davis 88 73 85 78 =AVERAGE(B2:E2)
3 Johnson 52 71 65 67 =(B3*.20)+(C3*.20)+(D3*.20)+(E3*.40)
4 Smith 91 85 96 89 =(SUM(B4:E4)-MIN(B4:E4))/3
Excel’s SMALL( ) function is also helpful in determining the second or third lowest score. The syntax of the
SMALL( ) function is =SMALL(data,n) where data is the range of cells containing the data and n represents the
smallest number in the data set.
For example to find the second lowest test score for Connor in the previous example use SMALL(B6:E6,2); to
determine the third lowest score use SMALL(B6:E6,3). If you need to calculate an average that drops the two
lowest scores use MIN( ) to subtract the lowest and use SMALL( ) to subtract the second lowest. The formula in
cell F6 in the table above drops the two lowest exam scores and calculates the average with the final and the
remaining Exam score counting 50% each.
A B C D E F
1 Student Exam 1 Exam 2 Exam 3 Final Average
2 Davis 88 73 85 78 =AVERAGE(B2:E2)
3 Johnson 52 71 65 67 =(B3*.20)+(C3*.20)+(D3*.20)+(E3*.40)
4 Smith 91 85 96 89 =(SUM(B4:E4)-MIN(B4:E4))/3
5 Jones 78 82 67 75 =(SUM(B5:D5)-MIN(B5:D5))/2*.60 + (E5*.40)
6 Connor 88 91 83 75 =(SUM(B6:D6)-MIN(B6:D6)-
SMALL(B6:D6,2))*.50 + (E6*.50)
Conditional Calculations and Lookups
Excel has several logical functions that let you test cells and perform
different operations depending on their contents.
IF( ) function
The IF() function enables you to specify two different calculations based
on a certain condition. The syntax of the IF( ) function is
=IF(condition, calculation if condition is true, calculation if condition is
false)
Conditional Calculations and Lookups
AND( ) and OR( ) functions
To specify multiple conditions within an IF( ) function, use Excel's
AND( ) and OR( ) functions.
The syntax of these functions is:
=AND(condition 1, condition 2, ...condition n)
= OR(condition 1, condition 2, ...condition n)
AND( ) returns the value of TRUE if all its conditions are true, and
returns FALSE otherwise. OR( ) returns TRUE if at least one of the
specified conditions is true.
ISBLANK( ) function
Excel’s ISBLANK( ) function tests whether a certain cell is blank,.
This function returns TRUE if the cell is blank and FALSE if it’s
not.
Conditional Calculations and Lookups
Lookup Tables
The IF( ) function is very useful, but it is limited to either TRUE or FALSE outcomes. In many
worksheets, you might want to create a function that handles multiple outcomes. Excel's
VLOOKUP( ) function is ideally suited for this sort of calculation.
With the VLOOKUP( ) function (short for vertical lookup) you can specify lookup values for
different outcomes. For example, if you have a list of numeric averages in a worksheet, you
can create a formula that assigns letter grades based on a student's numeric score (e.g. a
score of 76 would be a C).
To use a VLOOKUP( ) function, you must first create a lookup table with a range of values.
This lookup table is similar in concept to a tax table. When using a tax table, find your income
in the first column and then read across to the column that applies to you, single, married
etc.
Using Excel in Computing Grades
-END-

More Related Content

What's hot

Lesson 1 introduction to spreadsheet
Lesson 1 introduction to spreadsheet Lesson 1 introduction to spreadsheet
Lesson 1 introduction to spreadsheet
afrimkofielias
 
Excel lesson01
Excel lesson01Excel lesson01
Excel lesson01
Erik Hardiyanto
 
Introduction to spreadsheets
Introduction to spreadsheetsIntroduction to spreadsheets
Introduction to spreadsheets
Casey Robertson
 
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
 
Basic Excel PPT Presentation.pptx
Basic Excel PPT Presentation.pptxBasic Excel PPT Presentation.pptx
Basic Excel PPT Presentation.pptx
ClengAP
 
Spreadsheet text functions
Spreadsheet text functionsSpreadsheet text functions
Spreadsheet text functions
Anjan Mahanta
 
MAIL MERGE.ppt
MAIL MERGE.pptMAIL MERGE.ppt
MAIL MERGE.ppt
GODOFJUDGEMENT
 
Ms excel basic about Data, graph and pivot table
Ms excel basic about Data, graph and pivot table Ms excel basic about Data, graph and pivot table
Ms excel basic about Data, graph and pivot table
Alomgir Hossain
 
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
 
Basic Ms excel
Basic Ms excelBasic Ms excel
Basic Ms excel
maharzahid0
 
Curriculum Guide ICT Grade 7-10.pdf
Curriculum Guide ICT Grade 7-10.pdfCurriculum Guide ICT Grade 7-10.pdf
Curriculum Guide ICT Grade 7-10.pdf
NikkiRodriguez7
 
Microsoft word basics ppt
Microsoft word basics pptMicrosoft word basics ppt
Microsoft word basics pptjdbutler13
 
Basics of Ms Excel Office Tool
Basics of Ms Excel Office ToolBasics of Ms Excel Office Tool
Basics of Ms Excel Office Tool
Subodh Shahare(सुबोध शहारे)
 
Introduction to Microsoft Excel for beginners
Introduction to Microsoft Excel for beginnersIntroduction to Microsoft Excel for beginners
Introduction to Microsoft Excel for beginners
Blogger Mumma
 
Semi-Detailed Lesson Plan - Input and Output Devices of Computers
Semi-Detailed Lesson Plan - Input and Output Devices of ComputersSemi-Detailed Lesson Plan - Input and Output Devices of Computers
Semi-Detailed Lesson Plan - Input and Output Devices of Computers
Anjenette Columnas
 
Excel Exercise
Excel ExerciseExcel Exercise
Excel Exercise
Kereen Tatham
 
Using the IF Function in Excel
Using the IF Function in ExcelUsing the IF Function in Excel
Using the IF Function in ExcelCasey Robertson
 
Spreadsheet basics ppt
Spreadsheet basics pptSpreadsheet basics ppt
Spreadsheet basics ppt
Tammy Carter
 
Microsoft word
Microsoft wordMicrosoft word
Microsoft word
RoshanMaharjan13
 
Curriculum guide ICT 7
Curriculum guide ICT 7Curriculum guide ICT 7
Curriculum guide ICT 7
Annie Elloren
 

What's hot (20)

Lesson 1 introduction to spreadsheet
Lesson 1 introduction to spreadsheet Lesson 1 introduction to spreadsheet
Lesson 1 introduction to spreadsheet
 
Excel lesson01
Excel lesson01Excel lesson01
Excel lesson01
 
Introduction to spreadsheets
Introduction to spreadsheetsIntroduction to spreadsheets
Introduction to spreadsheets
 
Functions and formulas of ms excel
Functions and formulas of ms excelFunctions and formulas of ms excel
Functions and formulas of ms excel
 
Basic Excel PPT Presentation.pptx
Basic Excel PPT Presentation.pptxBasic Excel PPT Presentation.pptx
Basic Excel PPT Presentation.pptx
 
Spreadsheet text functions
Spreadsheet text functionsSpreadsheet text functions
Spreadsheet text functions
 
MAIL MERGE.ppt
MAIL MERGE.pptMAIL MERGE.ppt
MAIL MERGE.ppt
 
Ms excel basic about Data, graph and pivot table
Ms excel basic about Data, graph and pivot table Ms excel basic about Data, graph and pivot table
Ms excel basic about Data, graph and pivot table
 
Formulas and functions - By Amresh Tiwari
Formulas and functions - By Amresh TiwariFormulas and functions - By Amresh Tiwari
Formulas and functions - By Amresh Tiwari
 
Basic Ms excel
Basic Ms excelBasic Ms excel
Basic Ms excel
 
Curriculum Guide ICT Grade 7-10.pdf
Curriculum Guide ICT Grade 7-10.pdfCurriculum Guide ICT Grade 7-10.pdf
Curriculum Guide ICT Grade 7-10.pdf
 
Microsoft word basics ppt
Microsoft word basics pptMicrosoft word basics ppt
Microsoft word basics ppt
 
Basics of Ms Excel Office Tool
Basics of Ms Excel Office ToolBasics of Ms Excel Office Tool
Basics of Ms Excel Office Tool
 
Introduction to Microsoft Excel for beginners
Introduction to Microsoft Excel for beginnersIntroduction to Microsoft Excel for beginners
Introduction to Microsoft Excel for beginners
 
Semi-Detailed Lesson Plan - Input and Output Devices of Computers
Semi-Detailed Lesson Plan - Input and Output Devices of ComputersSemi-Detailed Lesson Plan - Input and Output Devices of Computers
Semi-Detailed Lesson Plan - Input and Output Devices of Computers
 
Excel Exercise
Excel ExerciseExcel Exercise
Excel Exercise
 
Using the IF Function in Excel
Using the IF Function in ExcelUsing the IF Function in Excel
Using the IF Function in Excel
 
Spreadsheet basics ppt
Spreadsheet basics pptSpreadsheet basics ppt
Spreadsheet basics ppt
 
Microsoft word
Microsoft wordMicrosoft word
Microsoft word
 
Curriculum guide ICT 7
Curriculum guide ICT 7Curriculum guide ICT 7
Curriculum guide ICT 7
 

Similar to Use of Excel Spreadsheets in Computing Grades

Spreadsheets[1]
Spreadsheets[1]Spreadsheets[1]
Spreadsheets[1]
BBAMUMU2014
 
cheatsheet from DataCamp.pdf
cheatsheet from DataCamp.pdfcheatsheet from DataCamp.pdf
cheatsheet from DataCamp.pdf
Rakesh Nimhan
 
Office technology
Office technology Office technology
Office technology
SalwaRegina
 
Ms excel commands
Ms excel commandsMs excel commands
Ms excel commands
DiyaVerma14
 
Ms excel
Ms excelMs excel
Ms excel
HebaKidwai2
 
functionsandformulas-131221213835-phpapp01.pdf
functionsandformulas-131221213835-phpapp01.pdffunctionsandformulas-131221213835-phpapp01.pdf
functionsandformulas-131221213835-phpapp01.pdf
FranzLawrenzDeTorres1
 
Ms excel 2016_function
Ms excel 2016_functionMs excel 2016_function
Ms excel 2016_function
Paktia University
 
ENGR 102B Microsoft Excel Proficiency LevelsPlease have your in.docx
ENGR 102B Microsoft Excel Proficiency LevelsPlease have your in.docxENGR 102B Microsoft Excel Proficiency LevelsPlease have your in.docx
ENGR 102B Microsoft Excel Proficiency LevelsPlease have your in.docx
YASHU40
 
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
 
Excel training
Excel trainingExcel training
Excel training
Alexandru Gologan
 
Basic Functions - Excel 2013 Tutorial
Basic Functions - Excel 2013 TutorialBasic Functions - Excel 2013 Tutorial
Basic Functions - Excel 2013 Tutorial
SpreadsheetTrainer
 
Basic Formulas - Excel 2013 Tutorial
Basic Formulas - Excel 2013 TutorialBasic Formulas - Excel 2013 Tutorial
Basic Formulas - Excel 2013 Tutorial
SpreadsheetTrainer
 
Microsoft Excel Advanced Features
Microsoft Excel Advanced FeaturesMicrosoft Excel Advanced Features
Microsoft Excel Advanced Features
AkashMeghwar2
 
G10 Unit 4.pptx
G10 Unit 4.pptxG10 Unit 4.pptx
G10 Unit 4.pptx
abdulwehab2
 
MIS 226: Chapter 2
MIS 226: Chapter 2MIS 226: Chapter 2
MIS 226: Chapter 2macrob14
 
QMMS Lesson 2 - Using Excel Formula.pptx
QMMS Lesson 2 - Using Excel Formula.pptxQMMS Lesson 2 - Using Excel Formula.pptx
QMMS Lesson 2 - Using Excel Formula.pptx
ROWELL MARQUINA
 
Gse 213 lesson 3
Gse 213 lesson 3Gse 213 lesson 3
Simple formulas excel
Simple formulas excelSimple formulas excel
Simple formulas excel
Malika khalil
 

Similar to Use of Excel Spreadsheets in Computing Grades (20)

Spreadsheets[1]
Spreadsheets[1]Spreadsheets[1]
Spreadsheets[1]
 
Excel Function Training
Excel Function TrainingExcel Function Training
Excel Function Training
 
cheatsheet from DataCamp.pdf
cheatsheet from DataCamp.pdfcheatsheet from DataCamp.pdf
cheatsheet from DataCamp.pdf
 
Office technology
Office technology Office technology
Office technology
 
Ms excel commands
Ms excel commandsMs excel commands
Ms excel commands
 
Ms excel
Ms excelMs excel
Ms excel
 
functionsandformulas-131221213835-phpapp01.pdf
functionsandformulas-131221213835-phpapp01.pdffunctionsandformulas-131221213835-phpapp01.pdf
functionsandformulas-131221213835-phpapp01.pdf
 
Ms excel 2016_function
Ms excel 2016_functionMs excel 2016_function
Ms excel 2016_function
 
ENGR 102B Microsoft Excel Proficiency LevelsPlease have your in.docx
ENGR 102B Microsoft Excel Proficiency LevelsPlease have your in.docxENGR 102B Microsoft Excel Proficiency LevelsPlease have your in.docx
ENGR 102B Microsoft Excel Proficiency LevelsPlease have your in.docx
 
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
 
Excel training
Excel trainingExcel training
Excel training
 
Basic Functions - Excel 2013 Tutorial
Basic Functions - Excel 2013 TutorialBasic Functions - Excel 2013 Tutorial
Basic Functions - Excel 2013 Tutorial
 
Basic Formulas - Excel 2013 Tutorial
Basic Formulas - Excel 2013 TutorialBasic Formulas - Excel 2013 Tutorial
Basic Formulas - Excel 2013 Tutorial
 
Microsoft Excel Advanced Features
Microsoft Excel Advanced FeaturesMicrosoft Excel Advanced Features
Microsoft Excel Advanced Features
 
G10 Unit 4.pptx
G10 Unit 4.pptxG10 Unit 4.pptx
G10 Unit 4.pptx
 
MIS 226: Chapter 2
MIS 226: Chapter 2MIS 226: Chapter 2
MIS 226: Chapter 2
 
Excel.useful fns
Excel.useful fnsExcel.useful fns
Excel.useful fns
 
QMMS Lesson 2 - Using Excel Formula.pptx
QMMS Lesson 2 - Using Excel Formula.pptxQMMS Lesson 2 - Using Excel Formula.pptx
QMMS Lesson 2 - Using Excel Formula.pptx
 
Gse 213 lesson 3
Gse 213 lesson 3Gse 213 lesson 3
Gse 213 lesson 3
 
Simple formulas excel
Simple formulas excelSimple formulas excel
Simple formulas excel
 

Recently uploaded

Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345
beazzy04
 
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
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
Jisc
 
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
 
CACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdfCACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdf
camakaiclarkmusic
 
Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.
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
 
Introduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp NetworkIntroduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp Network
TechSoup
 
Lapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdfLapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdf
Jean Carlos Nunes Paixão
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
EugeneSaldivar
 
Embracing GenAI - A Strategic Imperative
Embracing GenAI - A Strategic ImperativeEmbracing GenAI - A Strategic Imperative
Embracing GenAI - A Strategic Imperative
Peter Windle
 
The Accursed House by Émile Gaboriau.pptx
The Accursed House by Émile Gaboriau.pptxThe Accursed House by Émile Gaboriau.pptx
The Accursed House by Émile Gaboriau.pptx
DhatriParmar
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
siemaillard
 
Chapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptxChapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptx
Mohd Adib Abd Muin, Senior Lecturer at Universiti Utara Malaysia
 
Honest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptxHonest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptx
timhan337
 
2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...
Sandy Millin
 
"Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe..."Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe...
SACHIN R KONDAGURI
 
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdfAdversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
Po-Chuan Chen
 
Acetabularia Information For Class 9 .docx
Acetabularia Information For Class 9  .docxAcetabularia Information For Class 9  .docx
Acetabularia Information For Class 9 .docx
vaibhavrinwa19
 
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
 

Recently uploaded (20)

Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345
 
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
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.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
 
CACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdfCACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdf
 
Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.
 
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
 
Introduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp NetworkIntroduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp Network
 
Lapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdfLapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdf
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
 
Embracing GenAI - A Strategic Imperative
Embracing GenAI - A Strategic ImperativeEmbracing GenAI - A Strategic Imperative
Embracing GenAI - A Strategic Imperative
 
The Accursed House by Émile Gaboriau.pptx
The Accursed House by Émile Gaboriau.pptxThe Accursed House by Émile Gaboriau.pptx
The Accursed House by Émile Gaboriau.pptx
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
 
Chapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptxChapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptx
 
Honest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptxHonest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptx
 
2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...
 
"Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe..."Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe...
 
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdfAdversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
 
Acetabularia Information For Class 9 .docx
Acetabularia Information For Class 9  .docxAcetabularia Information For Class 9  .docx
Acetabularia Information For Class 9 .docx
 
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
 

Use of Excel Spreadsheets in Computing Grades

  • 1. Use of Excel Spreadsheets in Computing Grades PREPARED BY: ELLI MAY A. CAÑAS
  • 2. OBJECTIVES: After the presentation, we shall be able to: ◦Know the importance of excel in computing grades ◦Recognize some functions of each formulas in excel ◦Learn the application of the formulas ◦Distinguish some statistical functions and weighted averages ◦Identify some conditional calculations and Look Ups
  • 3. Why do we use Excel in computing grades? Ease of inputting grades Use of formulas for automatic calculation of: -point totals -dropping lowest score from total -averages -final letter grade conversion Easy import into other programs (Web, etc.)
  • 4. What makes Excel so powerful? Its ability to perform predetermined calculations, automatically. This is accomplished by developing formulas that do the work for us.
  • 5. It is important to understand how formulas work. All formulas begin with “=” Excel uses numbered rows and lettered columns for reference in formulas.
  • 6. FUNCTION WHAT IT DOES SUM(range ) Adds a range of cells AVERAGE( range) Calculates the average of a range of cells MAX(range ) Returns the maximum value of a range MIN(range ) Returns the minimum value of a range COUNT(range ) Counts the number of values (cells containing numbers) in a range COUNTA(range ) Counts the number of non-blank cells within a range COUNTBLANK(range ) Counts the number of blank cells within a range COUNTIF(range, "string" ) Counts the number of cells that are the same as a search string STDEV(range) Calculate the standard deviation of a sample SMALL(range, n) Returns the nth smallest number in the specified range The table below lists several of the more common and helpful statistical functions in Microsoft Excel.
  • 7. Key Notes: The SUM( ) and AVERAGE( ) functions are most frequently used. The COUNT( ) function ignores blank cells and does not count cells that contain text labels. To count cells containing text, you must use the COUNTA( ) function.
  • 8. Statistical Functions and Weighted Averages A B C D E F 1 Student Exam 1 Exam 2 Exam 3 Final Average 2 Davis 88 73 85 78 =AVERAGE(B2:E2) Excel has numerous functions to summarize data. The AVERAGE( ) function calculates the average of a group of numbers. For example in cell F2 below, =AVERAGE(B2:E2) calculates the average for the student in row 2. This AVERAGE( ) function assumes that all test scores are weighted equally. It also ignores blank cells; it does not treat them as 0.
  • 9. Weighted Averages There are many methods to create a weighted average using formulas. For example, if you want to count each test 20% and the final 40%, use the following formula: =(B3*.20)+(C3*.20)+(D3*.20)+(E3*.40) You can easily modify this formula to accommodate a different grading scheme. A B C D E F 1 Student Exam 1 Exam 2 Exam 3 Final Average 2 Davis 88 73 85 78 =AVERAGE(B2:E2) 3 Johnson 52 71 65 67 =(B3*.20)+(C3*.20)+(D3*.20)+(E3*.40)
  • 10. Dropping Low Scores The MIN( ) function returns the smallest value in a range of cells. The formula in cell F4 above adds all test scores for Smith then subtracts the minimum test score and divides the result by 3. This formula also assumes that all scores are weighted equally. However, you can calculate a weighted average and drop a low score. A B C D E F 1 Student Exam 1 Exam 2 Exam 3 Final Average 2 Davis 88 73 85 78 =AVERAGE(B2:E2) 3 Johnson 52 71 65 67 =(B3*.20)+(C3*.20)+(D3*.20)+(E3*.40) 4 Smith 91 85 96 89 =(SUM(B4:E4)-MIN(B4:E4))/3
  • 11. Excel’s SMALL( ) function is also helpful in determining the second or third lowest score. The syntax of the SMALL( ) function is =SMALL(data,n) where data is the range of cells containing the data and n represents the smallest number in the data set. For example to find the second lowest test score for Connor in the previous example use SMALL(B6:E6,2); to determine the third lowest score use SMALL(B6:E6,3). If you need to calculate an average that drops the two lowest scores use MIN( ) to subtract the lowest and use SMALL( ) to subtract the second lowest. The formula in cell F6 in the table above drops the two lowest exam scores and calculates the average with the final and the remaining Exam score counting 50% each. A B C D E F 1 Student Exam 1 Exam 2 Exam 3 Final Average 2 Davis 88 73 85 78 =AVERAGE(B2:E2) 3 Johnson 52 71 65 67 =(B3*.20)+(C3*.20)+(D3*.20)+(E3*.40) 4 Smith 91 85 96 89 =(SUM(B4:E4)-MIN(B4:E4))/3 5 Jones 78 82 67 75 =(SUM(B5:D5)-MIN(B5:D5))/2*.60 + (E5*.40) 6 Connor 88 91 83 75 =(SUM(B6:D6)-MIN(B6:D6)- SMALL(B6:D6,2))*.50 + (E6*.50)
  • 12. Conditional Calculations and Lookups Excel has several logical functions that let you test cells and perform different operations depending on their contents. IF( ) function The IF() function enables you to specify two different calculations based on a certain condition. The syntax of the IF( ) function is =IF(condition, calculation if condition is true, calculation if condition is false)
  • 13. Conditional Calculations and Lookups AND( ) and OR( ) functions To specify multiple conditions within an IF( ) function, use Excel's AND( ) and OR( ) functions. The syntax of these functions is: =AND(condition 1, condition 2, ...condition n) = OR(condition 1, condition 2, ...condition n) AND( ) returns the value of TRUE if all its conditions are true, and returns FALSE otherwise. OR( ) returns TRUE if at least one of the specified conditions is true.
  • 14. ISBLANK( ) function Excel’s ISBLANK( ) function tests whether a certain cell is blank,. This function returns TRUE if the cell is blank and FALSE if it’s not. Conditional Calculations and Lookups
  • 15. Lookup Tables The IF( ) function is very useful, but it is limited to either TRUE or FALSE outcomes. In many worksheets, you might want to create a function that handles multiple outcomes. Excel's VLOOKUP( ) function is ideally suited for this sort of calculation. With the VLOOKUP( ) function (short for vertical lookup) you can specify lookup values for different outcomes. For example, if you have a list of numeric averages in a worksheet, you can create a formula that assigns letter grades based on a student's numeric score (e.g. a score of 76 would be a C). To use a VLOOKUP( ) function, you must first create a lookup table with a range of values. This lookup table is similar in concept to a tax table. When using a tax table, find your income in the first column and then read across to the column that applies to you, single, married etc.
  • 16. Using Excel in Computing Grades
  • 17. -END-