280 likes | 454 Views
Accuracy. S5 Accuracy All Sections. Today’s Topic. Security. Hardware & Software. IS Basics. Information Quality. Types of IS. Telecommu-nications. Systems Development. PowerPoint. Functional, Crossfunctional & Interorganizational. Database Processing & Design. Spreadsheet Design.
E N D
Accuracy S5 Accuracy All Sections
Today’s Topic Security Hardware & Software IS Basics Information Quality Types of IS Telecommu-nications Systems Development PowerPoint Functional, Crossfunctional & Interorganizational Database Processing & Design Spreadsheet Design E-commerce Access Excel Business Intelligence
Accuracy & Efficiency Spreadsheet Design Efficiency Simplicity includes Clarity Accuracy Layout Choices Formulas Functions Macros Verifiability Formulas Functions Basic Formatting Conditional Formatting Freeze Panes Page Setup Sorting Charts implemented with Documentation Data Validation Protection
Objectives • Define the accuracy goal. • Apply the spreadsheet design goal of accuracy.
Required Excel Skills • Range Name • Change Legend • Change Axis • Add Data Series • ‘Other’ Pie Slice • SUM Function • AVERAGE Function • MIN & MAX Functions • COUNT Function • 3D Calculations
What Steps Should You Follow to Improve Accuracy? • Know the order of operations. • Select the correct function or construct the correct formula. (Choose a function over a formula.) • Isolate assumptions. • Check relative and absolute cell references. • Double-check all calculations.
What is the Order of Operations? • Parentheses • Multiplication and Division • Addition and Subtraction
Order of Operations Examples • 6 / 2 * 4 = • 3 + 2 * 2 – 1 = • ( 2 * 5 ) + 15 / 5 =
What’s the Difference Between Formula and Function? • Formula • created by you • = A1 + A10 • Function • keyword defined by Microsoft • =SUM(A1:D1) • Functions are more flexible than formulas
Formula vs. Function Example If you delete Row 5 =SUM(C3:C5) =B3+B4+B5+B6 =SUM(C3:C6)
What is the Simplest Formula? • =cell reference • Used to transfer data from one cell to another • Benefit over copy & paste: redundant location is dynamic
What are the Common Functions? • SUM • AVERAGE • MIN and MAX • COUNT
What Does Isolate Assumptions Mean? • Store numbers in cells • Write equations to point to cells containing numbers
Isolate Assumption Example Assumption =E2+3 is incorrect =E2+H2 is correct
Isolated Assumptions? How Do You Spend Your Study Time?
Isolated Assumptions? How Do You Spend Your Day?
What are Relative, Absolute & Mixed Cell References? The cell addresses in the copied calculation may change. Any changes are made according to the direction and distance of the destination cell from the original source cell.
What are the Decision Points for Choosing the Correct Cell Reference? • Is the formula entered going to be copied? • If so, which direction? • If it’s copied vertically, do you want the row references to change? If it’s copied horizontally, do you want the column references to change? • Do you want such a change to take place?
What are the Decision Points for Choosing the Correct Cell Reference?
Relative/Absolute Example • Will you copy this function? • If so, which direction: vertical or horizontal? • If you copy vertically, Excel will automatically change all relative row references. Do you want those row references to change? =SUM(B2:D2)
Mixed Cell References Needed? How Do You Spend Your Study Time?
GPA Accuracy Activity • What equations would you use to calculate • Weighted Credits for each course • Total Semester Credits • Total Semester Weight Credits • GPA • Remember to: • Choose a function over a formula • Isolate assumptions • Check relative and absolute cell references
What is the Purpose of the IF Function? • IF function displays one of two possible values depending on the outcome of a logical test • Logical Test compares two things • If the Logical Test equates to TRUE, the cell is filled with the True Value. • If the Logical Test equates to FALSE, the cell is filled with the False Value.
IF Label Example • If a course requires more than 3 hours of study time per week, we will label it HARD. Three or less hours of study is labeled EASY.
IF Label Example • What cell is used for the logical test? • What is the logical test? • What is the true value? False value? 3
IF Grade Example Use the IF function to assign Pass/Fail grades. =IF(V4>=.6,”P”,”F”)