SlideShare une entreprise Scribd logo
1  sur  12
USE EXCEL FORMULAS TO MANAGE
                     STUDENT GRADES


          .




© Permission is granted to copy, distribute and modify this document as long as you give me credit.
WORKSHOP OBJECTIVE
After completion of the workshop, participants will be able
to:
• Identify the syntax and operators of an Excel formula
• Use SUM(), MAX(), MIN(), SMALL(), COUNTIF(), and
  AVAREAGE() to perform statistical calculation
• Construct an IF() formula to perform computation
• Create a look-up table and use VLOOKUP() function to
  update student letter grade
OPERATORS
            OPERATOR                               MEANING                      EXAMPLE
+ (plus sign)                        Addition                                   3+3


– (minus sign)                       Subtraction                                3–1
                                     Negation                                   –1
* (asterisk)                         Multiplication                             3*3


/ (forward slash)                    Division                                   3/3


% (percent sign)                     Percent                                    20%


^ (caret)                            Exponentiation                             3^2


= (equal sign)                       Equal to                                   A1=B1


> (greater than sign)                Greater than                               A1>B1


< (less than sign)                   Less than                                  A1<B1


>= (greater than or equal to sign)   Greater than or equal to                   A1>=B1


<= (less than or equal to sign)      Less than or equal to                      A1<=B1


<> (not equal to sign)               Not equal to                               A1<>B1


: (colon)                            Range operator, which produces one         B5:B15
                                     reference to all the cells between two
                                     references, including the two references
EXCEL FORMULAS AND FUNCTIONS
                   FUNCTION                             WHAT IT DOES

SUM(range)                               Adds all the numbers in a range of cells
AVERAGE(range)                           Calculates the average of a range of cells
IF(LogicalTest, TrueValue, falseValue)   Checks whether a condition is met, and
                                         returns one value if true, and anther
                                         value if false
MAX(range)                               Returns the largest value in a set of
                                         values. It ignores logical values and text
MIN(range)                               Returns the smallest value in a set of
                                         values
COUNT(range )                            Counts the number of values (cells
                                         containing numbers) in a range
COUNTIF(range, criteria )                Counts the number of cells that are the
                                         same as a search string
SMALL(range, k)                          Returns the k-th smallest value in a set
                                         of values
AVERAGE AND WEIGHTED AVERAGE SCORE
• Average of a set of scores:
   • AVERAGE() All cell weighted equally
   • =AVERAGE(B2:B5)
• Weighted Average:
   • 20% and 40% weight
   • =(B2+C2+D2)*0.2+E2*0.4
AVERAGE AND WEIGHTED AVERAGE SCORE
             A            B             C             D            E           F
                                                                                            G
            Name        Quiz 1        Quiz 2        Quiz 3        Final    Total Score   Weighted
 1                                                                                       Average
 2   Angela        98            91            98            81           =SUM(C2:E2 =B2*0.2+C2
                                                                          )          *0.2+D2*0.2
                                                                                     +F2*0.4
 …   Eric          89            78            85            92

 5   John          68            67            73            43

 6   Average       =AVERAGE(B
                   2:B5)
 7   Highest       =MAX(B2:B5
                   )
 8   Lowest        =MIN(B2:B5)
DROPPING LOWEST SCORES
• Drop one lowest score
  =SUM(B2:E2)-MIN(B2:E2)
• Drop two lowest score
  =SUM(B2:E2)-MIN(B2:E2)-SMALL(B2:E2,2)
TAKING ATTENDANCE
• Recording Student Attendance
• Displaying Attendance in Another Worksheet

       A         B        C        D        E      F           G                H


 1
     Name   Quiz 1   Quiz 2   Quiz 3   Final    Total   Absence          Adjusted


 2
     Angela 98       91       98       81               =Attendance!I2   =IF(G2>=3,F2-
                                                                         30,F2)
ADJUSTING SCOER
• Excel IF() function to adjust student score based on your class policies
  =IF(Criteria, Value if true, Value if false)
• AND() check whether all arguments are true. OR() function checks whether
  any of the arguments are true.
• ISBLANK() check whether a reference is an empty cell and returns true or
  false
• What the hell is this?
  =IF(AND(A1>B1, NOT(ISBLANK(B1))), AVERAGE(A1, B1), B1)
LETTER GRADES
•    VLOOKUP() function looks for a value
     =VLOOKUP(lookup value, lookup table range, value column)


             A      B        C        D       E       F        G             H                    I

    1      Name   Quiz 1   Quiz 2   Quiz 3   Final   Total   Absence   Adjusted Score          Grade
                                                                                        =VLOOKUP(H2,$A$10:$B
    2 Angela       98       91       98       81     368       1           368
                                                                                        $14,2)

    3 Debra        72       78       78       97     325       1           325                   B

    …

    9
    10 0            F
    11 240          D
    12 280          C
    13 320          B
    14 360          A
ANALYSIS TOOLPAK
• Microsoft Office Excel add-in
• ANOVA
• correlation or
• t-test
QUESTIONS?



 HANDOUT
 http://i-digitals.blogspot.com/2011/08/using-excel-to-manage-student-grade.html


© Permission is granted to copy, distribute and modify this document as long as you give me credit.

Contenu connexe

Tendances

Properties of operations
Properties of operationsProperties of operations
Properties of operations
katiavidal
 
Relational algebra
Relational algebraRelational algebra
Relational algebra
shynajain
 
1.4 Functions
1.4 Functions1.4 Functions
1.4 Functions
nicksuf
 
2.2 variables, evaluation and expressions w
2.2 variables, evaluation and expressions w2.2 variables, evaluation and expressions w
2.2 variables, evaluation and expressions w
Tzenma
 
My slide relational algebra
My slide  relational algebraMy slide  relational algebra
My slide relational algebra
Rushdi Shams
 
2 1 relationsfunctions
2 1 relationsfunctions2 1 relationsfunctions
2 1 relationsfunctions
Fendi Ard
 
Higher Maths 1.2.1 - Sets and Functions
Higher Maths 1.2.1 - Sets and FunctionsHigher Maths 1.2.1 - Sets and Functions
Higher Maths 1.2.1 - Sets and Functions
timschmitz
 

Tendances (20)

Functions
FunctionsFunctions
Functions
 
Properties of operations
Properties of operationsProperties of operations
Properties of operations
 
Relational algebra
Relational algebraRelational algebra
Relational algebra
 
Unidad ii matemática ANA VIRGUEZ
Unidad ii matemática ANA VIRGUEZ Unidad ii matemática ANA VIRGUEZ
Unidad ii matemática ANA VIRGUEZ
 
Different types of functions
Different types of functionsDifferent types of functions
Different types of functions
 
1.4 Functions
1.4 Functions1.4 Functions
1.4 Functions
 
Lesson 2.1 what is a function
Lesson 2.1    what is a functionLesson 2.1    what is a function
Lesson 2.1 what is a function
 
Function notation by sadiq
Function notation by sadiqFunction notation by sadiq
Function notation by sadiq
 
55 addition and subtraction of rational expressions
55 addition and subtraction of rational expressions 55 addition and subtraction of rational expressions
55 addition and subtraction of rational expressions
 
13 multiplication and division of rational expressions
13 multiplication and division of rational expressions13 multiplication and division of rational expressions
13 multiplication and division of rational expressions
 
Relations and Functions
Relations and FunctionsRelations and Functions
Relations and Functions
 
Evaluating function 1
Evaluating function 1Evaluating function 1
Evaluating function 1
 
Relational+algebra (1)
Relational+algebra (1)Relational+algebra (1)
Relational+algebra (1)
 
2.2 variables, evaluation and expressions w
2.2 variables, evaluation and expressions w2.2 variables, evaluation and expressions w
2.2 variables, evaluation and expressions w
 
My slide relational algebra
My slide  relational algebraMy slide  relational algebra
My slide relational algebra
 
2 1 relationsfunctions
2 1 relationsfunctions2 1 relationsfunctions
2 1 relationsfunctions
 
P7
P7P7
P7
 
Higher Maths 1.2.1 - Sets and Functions
Higher Maths 1.2.1 - Sets and FunctionsHigher Maths 1.2.1 - Sets and Functions
Higher Maths 1.2.1 - Sets and Functions
 
Rational Expressions
Rational ExpressionsRational Expressions
Rational Expressions
 
Graph of functions
Graph of functionsGraph of functions
Graph of functions
 

En vedette

Building Formulas With Excel 2
Building Formulas With Excel 2Building Formulas With Excel 2
Building Formulas With Excel 2
norzaini
 
"Days and Months" Tagalog - English cards
"Days and Months" Tagalog - English cards"Days and Months" Tagalog - English cards
"Days and Months" Tagalog - English cards
Veronica Gelfgren
 
Epoxy crack injection for concrete (the basics)
Epoxy crack injection for concrete (the basics)Epoxy crack injection for concrete (the basics)
Epoxy crack injection for concrete (the basics)
jbors
 
Concrete (slump test)
Concrete (slump test)Concrete (slump test)
Concrete (slump test)
Geo Dimaks
 

En vedette (20)

Building Formulas With Excel 2
Building Formulas With Excel 2Building Formulas With Excel 2
Building Formulas With Excel 2
 
Autocad2011 1
Autocad2011 1Autocad2011 1
Autocad2011 1
 
"Days and Months" Tagalog - English cards
"Days and Months" Tagalog - English cards"Days and Months" Tagalog - English cards
"Days and Months" Tagalog - English cards
 
AutoCAD Shortcut List
AutoCAD Shortcut ListAutoCAD Shortcut List
AutoCAD Shortcut List
 
basics of Tool steel
basics of Tool steelbasics of Tool steel
basics of Tool steel
 
Chapter 1 drawing in auto cad 2010
Chapter 1   drawing in auto cad 2010Chapter 1   drawing in auto cad 2010
Chapter 1 drawing in auto cad 2010
 
Compacting Factor Test
Compacting Factor TestCompacting Factor Test
Compacting Factor Test
 
How to build a concrete reinforcement rebar area spreadsheet
How to build a concrete reinforcement rebar area spreadsheetHow to build a concrete reinforcement rebar area spreadsheet
How to build a concrete reinforcement rebar area spreadsheet
 
Intro to AutoCAD 2016 2D | 03 - user interface
Intro to AutoCAD 2016  2D | 03 - user interfaceIntro to AutoCAD 2016  2D | 03 - user interface
Intro to AutoCAD 2016 2D | 03 - user interface
 
Challenges of Rebar Testing
Challenges of Rebar TestingChallenges of Rebar Testing
Challenges of Rebar Testing
 
Epoxy crack injection for concrete (the basics)
Epoxy crack injection for concrete (the basics)Epoxy crack injection for concrete (the basics)
Epoxy crack injection for concrete (the basics)
 
Reinforcement steel
Reinforcement steelReinforcement steel
Reinforcement steel
 
Concrete (slump test)
Concrete (slump test)Concrete (slump test)
Concrete (slump test)
 
Creep
CreepCreep
Creep
 
Sample size calculation
Sample  size calculationSample  size calculation
Sample size calculation
 
Chapter 2 orthographic projection - 2010
Chapter 2   orthographic projection - 2010Chapter 2   orthographic projection - 2010
Chapter 2 orthographic projection - 2010
 
Reinforcement bar
Reinforcement barReinforcement bar
Reinforcement bar
 
10.01.03.049-One Way Slab
10.01.03.049-One Way Slab10.01.03.049-One Way Slab
10.01.03.049-One Way Slab
 
Prestressed Concrete
Prestressed ConcretePrestressed Concrete
Prestressed Concrete
 
One way slab design 10.01.03.162
One way slab design 10.01.03.162One way slab design 10.01.03.162
One way slab design 10.01.03.162
 

Similaire à Use Excel Formulas

Notes and-formulae-mathematics
Notes and-formulae-mathematicsNotes and-formulae-mathematics
Notes and-formulae-mathematics
Ah Ching
 
INTRODUCTION TO MATLAB presentation.pptx
INTRODUCTION TO MATLAB presentation.pptxINTRODUCTION TO MATLAB presentation.pptx
INTRODUCTION TO MATLAB presentation.pptx
Devaraj Chilakala
 

Similaire à Use Excel Formulas (20)

Introduction to DAX Language
Introduction to DAX LanguageIntroduction to DAX Language
Introduction to DAX Language
 
AP Calculus January 5, 2009
AP Calculus January 5, 2009AP Calculus January 5, 2009
AP Calculus January 5, 2009
 
Excel functions, formulas, Prepared by singh institute RK Puram
Excel functions, formulas, Prepared by singh institute RK PuramExcel functions, formulas, Prepared by singh institute RK Puram
Excel functions, formulas, Prepared by singh institute RK Puram
 
AP Calculus Slides December 10, 2007
AP Calculus Slides December 10, 2007AP Calculus Slides December 10, 2007
AP Calculus Slides December 10, 2007
 
cheatsheet from DataCamp.pdf
cheatsheet from DataCamp.pdfcheatsheet from DataCamp.pdf
cheatsheet from DataCamp.pdf
 
Nbhm m. a. and m.sc. scholarship test 2008
Nbhm m. a. and m.sc. scholarship test 2008Nbhm m. a. and m.sc. scholarship test 2008
Nbhm m. a. and m.sc. scholarship test 2008
 
1150 day 5
1150 day 51150 day 5
1150 day 5
 
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
 
MATHS SYMBOLS.pdf
MATHS SYMBOLS.pdfMATHS SYMBOLS.pdf
MATHS SYMBOLS.pdf
 
Excel presentation
Excel presentationExcel presentation
Excel presentation
 
R Cheat Sheet for Data Analysts and Statisticians.pdf
R Cheat Sheet for Data Analysts and Statisticians.pdfR Cheat Sheet for Data Analysts and Statisticians.pdf
R Cheat Sheet for Data Analysts and Statisticians.pdf
 
Notes and Formulae Mathematics SPM
Notes and Formulae Mathematics SPM Notes and Formulae Mathematics SPM
Notes and Formulae Mathematics SPM
 
Notes and-formulae-mathematics
Notes and-formulae-mathematicsNotes and-formulae-mathematics
Notes and-formulae-mathematics
 
Mathematics formulas
Mathematics formulasMathematics formulas
Mathematics formulas
 
INTRODUCTION TO MATLAB presentation.pptx
INTRODUCTION TO MATLAB presentation.pptxINTRODUCTION TO MATLAB presentation.pptx
INTRODUCTION TO MATLAB presentation.pptx
 
Grading system using t score by Excel
Grading system using t score by ExcelGrading system using t score by Excel
Grading system using t score by Excel
 
Basic R Data Manipulation
Basic R Data ManipulationBasic R Data Manipulation
Basic R Data Manipulation
 
NPTEL QUIZ.docx
NPTEL QUIZ.docxNPTEL QUIZ.docx
NPTEL QUIZ.docx
 
Intro Num Int Asmd
Intro Num Int AsmdIntro Num Int Asmd
Intro Num Int Asmd
 
Excel formulas-a-quick-list
Excel formulas-a-quick-listExcel formulas-a-quick-list
Excel formulas-a-quick-list
 

Dernier

1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
QucHHunhnh
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
ciinovamais
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
heathfieldcps1
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
negromaestrong
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
QucHHunhnh
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
PECB
 

Dernier (20)

Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdf
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptx
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
Asian American Pacific Islander Month DDSD 2024.pptx
Asian American Pacific Islander Month DDSD 2024.pptxAsian American Pacific Islander Month DDSD 2024.pptx
Asian American Pacific Islander Month DDSD 2024.pptx
 

Use Excel Formulas

  • 1. USE EXCEL FORMULAS TO MANAGE STUDENT GRADES . © Permission is granted to copy, distribute and modify this document as long as you give me credit.
  • 2. WORKSHOP OBJECTIVE After completion of the workshop, participants will be able to: • Identify the syntax and operators of an Excel formula • Use SUM(), MAX(), MIN(), SMALL(), COUNTIF(), and AVAREAGE() to perform statistical calculation • Construct an IF() formula to perform computation • Create a look-up table and use VLOOKUP() function to update student letter grade
  • 3. OPERATORS OPERATOR MEANING EXAMPLE + (plus sign) Addition 3+3 – (minus sign) Subtraction 3–1 Negation –1 * (asterisk) Multiplication 3*3 / (forward slash) Division 3/3 % (percent sign) Percent 20% ^ (caret) Exponentiation 3^2 = (equal sign) Equal to A1=B1 > (greater than sign) Greater than A1>B1 < (less than sign) Less than A1<B1 >= (greater than or equal to sign) Greater than or equal to A1>=B1 <= (less than or equal to sign) Less than or equal to A1<=B1 <> (not equal to sign) Not equal to A1<>B1 : (colon) Range operator, which produces one B5:B15 reference to all the cells between two references, including the two references
  • 4. EXCEL FORMULAS AND FUNCTIONS FUNCTION WHAT IT DOES SUM(range) Adds all the numbers in a range of cells AVERAGE(range) Calculates the average of a range of cells IF(LogicalTest, TrueValue, falseValue) Checks whether a condition is met, and returns one value if true, and anther value if false MAX(range) Returns the largest value in a set of values. It ignores logical values and text MIN(range) Returns the smallest value in a set of values COUNT(range ) Counts the number of values (cells containing numbers) in a range COUNTIF(range, criteria ) Counts the number of cells that are the same as a search string SMALL(range, k) Returns the k-th smallest value in a set of values
  • 5. AVERAGE AND WEIGHTED AVERAGE SCORE • Average of a set of scores: • AVERAGE() All cell weighted equally • =AVERAGE(B2:B5) • Weighted Average: • 20% and 40% weight • =(B2+C2+D2)*0.2+E2*0.4
  • 6. AVERAGE AND WEIGHTED AVERAGE SCORE A B C D E F G Name Quiz 1 Quiz 2 Quiz 3 Final Total Score Weighted 1 Average 2 Angela 98 91 98 81 =SUM(C2:E2 =B2*0.2+C2 ) *0.2+D2*0.2 +F2*0.4 … Eric 89 78 85 92 5 John 68 67 73 43 6 Average =AVERAGE(B 2:B5) 7 Highest =MAX(B2:B5 ) 8 Lowest =MIN(B2:B5)
  • 7. DROPPING LOWEST SCORES • Drop one lowest score =SUM(B2:E2)-MIN(B2:E2) • Drop two lowest score =SUM(B2:E2)-MIN(B2:E2)-SMALL(B2:E2,2)
  • 8. TAKING ATTENDANCE • Recording Student Attendance • Displaying Attendance in Another Worksheet A B C D E F G H 1 Name Quiz 1 Quiz 2 Quiz 3 Final Total Absence Adjusted 2 Angela 98 91 98 81 =Attendance!I2 =IF(G2>=3,F2- 30,F2)
  • 9. ADJUSTING SCOER • Excel IF() function to adjust student score based on your class policies =IF(Criteria, Value if true, Value if false) • AND() check whether all arguments are true. OR() function checks whether any of the arguments are true. • ISBLANK() check whether a reference is an empty cell and returns true or false • What the hell is this? =IF(AND(A1>B1, NOT(ISBLANK(B1))), AVERAGE(A1, B1), B1)
  • 10. LETTER GRADES • VLOOKUP() function looks for a value =VLOOKUP(lookup value, lookup table range, value column) A B C D E F G H I 1 Name Quiz 1 Quiz 2 Quiz 3 Final Total Absence Adjusted Score Grade =VLOOKUP(H2,$A$10:$B 2 Angela 98 91 98 81 368 1 368 $14,2) 3 Debra 72 78 78 97 325 1 325 B … 9 10 0 F 11 240 D 12 280 C 13 320 B 14 360 A
  • 11. ANALYSIS TOOLPAK • Microsoft Office Excel add-in • ANOVA • correlation or • t-test
  • 12. QUESTIONS? HANDOUT http://i-digitals.blogspot.com/2011/08/using-excel-to-manage-student-grade.html © Permission is granted to copy, distribute and modify this document as long as you give me credit.

Notes de l'éditeur

  1. There are three types of data you can put in a cell in an Excel spreadsheet, number, text and formulas. Formulas are used to add, subtract, multiply, or divide the numbers in a cell (or cells) and produce a new answer.