computer science & engineering 2111 lecture 2 basic functions, common excel errors, cell...

22
Computer Science & Engineering 2111 Lecture 2 Basic Functions, Common Excel Errors, Cell Addressing 1 CSE 2111 Lecture 2-Basic Functions and Cell Addressing

Upload: monica-martin

Post on 05-Jan-2016

219 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Computer Science & Engineering 2111 Lecture 2 Basic Functions, Common Excel Errors, Cell Addressing 1 CSE 2111 Lecture 2-Basic Functions and Cell Addressing

1

Computer Science & Engineering 2111

Computer Science & Engineering 2111

Lecture 2Basic Functions, Common Excel Errors, Cell Addressing

CSE 2111 Lecture 2-Basic Functions and Cell Addressing

Page 2: Computer Science & Engineering 2111 Lecture 2 Basic Functions, Common Excel Errors, Cell Addressing 1 CSE 2111 Lecture 2-Basic Functions and Cell Addressing

2

Common Excel Errors

Unusual symbols

Green triangles

CSE 2111 Lecture 2-Basic Functions and Cell Addressing

Page 3: Computer Science & Engineering 2111 Lecture 2 Basic Functions, Common Excel Errors, Cell Addressing 1 CSE 2111 Lecture 2-Basic Functions and Cell Addressing

3

Common Excel Errors

Numbers that don’t add up correctly

(Precision Vs. Formatting)CSE 2111 Lecture 2-Basic Functions and

Cell Addressing

Page 4: Computer Science & Engineering 2111 Lecture 2 Basic Functions, Common Excel Errors, Cell Addressing 1 CSE 2111 Lecture 2-Basic Functions and Cell Addressing

4

FunctionsHow does a function work?• Functions take arguments and return a result• Algorithm

A step-by-step procedure for accomplishing some end task.

• Result The value calculated by the function

CSE 2111 Lecture 2-Basic Functions and Cell Addressing

Page 5: Computer Science & Engineering 2111 Lecture 2 Basic Functions, Common Excel Errors, Cell Addressing 1 CSE 2111 Lecture 2-Basic Functions and Cell Addressing

5

Format or Syntax of a Function

Syntax• Specific format required to use a function its name and

order of arguments• Function Syntax is not case sensitive

Format or syntax of a function• =Function Name(arguments)

• Arguments– Argument variables are used by the function to calculate

the result. Arguments appear in a specific order.

CSE 2111 Lecture 2-Basic Functions and Cell Addressing

Page 6: Computer Science & Engineering 2111 Lecture 2 Basic Functions, Common Excel Errors, Cell Addressing 1 CSE 2111 Lecture 2-Basic Functions and Cell Addressing

6

Examples of Syntax=SUM(number1, [number2], …)

=SUM(A1:A4, A1:D4, A1, D3:D5,7, markup) * 3

• A1:A4 - Range along a column• A1:D4 - A two-dimensional range (Block)• markup – Named Range

ArgumentRequired

ArgumentOptional

Many more arguments

CSE 2111 Lecture 2-Basic Functions and Cell Addressing

Page 7: Computer Science & Engineering 2111 Lecture 2 Basic Functions, Common Excel Errors, Cell Addressing 1 CSE 2111 Lecture 2-Basic Functions and Cell Addressing

7

Common Functions

CSE 2111 Lecture 2-Basic Functions and Cell Addressing

Page 8: Computer Science & Engineering 2111 Lecture 2 Basic Functions, Common Excel Errors, Cell Addressing 1 CSE 2111 Lecture 2-Basic Functions and Cell Addressing

8

Round Function

CSE 2111 Lecture 2-Basic Functions and Cell Addressing

Syntax: =ROUND(number, num_digits)

number: Number to be rounded

num_digits: Number of decimal places

Round to: digit Formula Resultnearest whole number 0 =ROUND(2738.252,0) 2,738.000nearest tenth 1 =ROUND(2738.252,1) 2,738.300nearest hundreth 2 =ROUND(2738.252,2) 2,738.250

nearest tens -1 =ROUND(2738.252,-1) 2,740.000nearest hundreds -2 =ROUND(2738.252,-2) 2,700.000

Page 9: Computer Science & Engineering 2111 Lecture 2 Basic Functions, Common Excel Errors, Cell Addressing 1 CSE 2111 Lecture 2-Basic Functions and Cell Addressing

9CSE 2111 Lecture 2-Basic Functions and

Cell Addressing

Page 10: Computer Science & Engineering 2111 Lecture 2 Basic Functions, Common Excel Errors, Cell Addressing 1 CSE 2111 Lecture 2-Basic Functions and Cell Addressing

10

Type in Function or use the Function Wizard

• Function wizard: A short-cut to all the functions in excel (use fx toolbar button) that walks you through building a function

CSE 2111 Lecture 2-Basic Functions and Cell Addressing

Page 11: Computer Science & Engineering 2111 Lecture 2 Basic Functions, Common Excel Errors, Cell Addressing 1 CSE 2111 Lecture 2-Basic Functions and Cell Addressing

Blank Cells when using certain functions

Blank Cells are ignored

11

Page 12: Computer Science & Engineering 2111 Lecture 2 Basic Functions, Common Excel Errors, Cell Addressing 1 CSE 2111 Lecture 2-Basic Functions and Cell Addressing

Insert a row between 2 and 3 and add the order# 301 with the quantity of 1,000

12

Page 13: Computer Science & Engineering 2111 Lecture 2 Basic Functions, Common Excel Errors, Cell Addressing 1 CSE 2111 Lecture 2-Basic Functions and Cell Addressing

13

Excel Error Messages

• ##### - Numeric value too wide to display

• #DIV/0! - Divide by 0 or blank cell occurs

• #N/A - Data being referenced is not available

• #NAME? - Text in formula is not recognized

• #NUM! - Problem with a number in a formula or function

• #REF! - Cell reference is not valid

• #VALUE! - Wrong type of argument or operand in a formula

CSE 2111 Lecture 2-Basic Functions and Cell Addressing

Page 14: Computer Science & Engineering 2111 Lecture 2 Basic Functions, Common Excel Errors, Cell Addressing 1 CSE 2111 Lecture 2-Basic Functions and Cell Addressing

14

Copying Formulas withRelative cell referencing

• Automatically adjusts formula cell references when formula is copied.

CSE 2111 Lecture 2-Basic Functions and Cell Addressing

Page 15: Computer Science & Engineering 2111 Lecture 2 Basic Functions, Common Excel Errors, Cell Addressing 1 CSE 2111 Lecture 2-Basic Functions and Cell Addressing

15

Copying Formulas withMixed cell referencing

Keeps the column or the row reference in the formula the same when copying the formula (Signified by $)

CSE 2111 Lecture 2-Basic Functions and Cell Addressing

Page 16: Computer Science & Engineering 2111 Lecture 2 Basic Functions, Common Excel Errors, Cell Addressing 1 CSE 2111 Lecture 2-Basic Functions and Cell Addressing

16

Copying Formulas withAbsolute cell referencing

Keeps the column and the row reference in the formula the same when copying the formula (Signified by $ in front of column and row)

CSE 2111 Lecture 2-Basic Functions and Cell Addressing

Page 17: Computer Science & Engineering 2111 Lecture 2 Basic Functions, Common Excel Errors, Cell Addressing 1 CSE 2111 Lecture 2-Basic Functions and Cell Addressing

17

Hard Coding values

Typing in the value in a formula or function instead of a cell reference• What if service charge changes to 8%?

CSE 2111 Lecture 2-Basic Functions and Cell Addressing

Page 18: Computer Science & Engineering 2111 Lecture 2 Basic Functions, Common Excel Errors, Cell Addressing 1 CSE 2111 Lecture 2-Basic Functions and Cell Addressing

18

Named Ranges

You can name a cell or a group of cells and use that name in your formulas.• Treated as an absolute cell reference

CSE 2111 Lecture 2-Basic Functions and Cell Addressing

Page 19: Computer Science & Engineering 2111 Lecture 2 Basic Functions, Common Excel Errors, Cell Addressing 1 CSE 2111 Lecture 2-Basic Functions and Cell Addressing

19

Copy the formula in cell A1 across to cell C1 and down to cell C4

CSE 2111 Lecture 2-Basic Functions and Cell Addressing

Fill in the Grid

Page 20: Computer Science & Engineering 2111 Lecture 2 Basic Functions, Common Excel Errors, Cell Addressing 1 CSE 2111 Lecture 2-Basic Functions and Cell Addressing

20

Copy the formula in cell A2 across to cell C2 and down to cell C4

A B C

1

2 =A11+D4

3

4

CSE 2111 Lecture 2-Basic Functions and Cell Addressing

Fill in the Grid

Page 21: Computer Science & Engineering 2111 Lecture 2 Basic Functions, Common Excel Errors, Cell Addressing 1 CSE 2111 Lecture 2-Basic Functions and Cell Addressing

21

Copy the formula in cell A2 across to cell C2 and down to cell C4

A B C

1

2 =A$11+$D4

3

4

CSE 2111 Lecture 2-Basic Functions and Cell Addressing

Fill in the Grid

Page 22: Computer Science & Engineering 2111 Lecture 2 Basic Functions, Common Excel Errors, Cell Addressing 1 CSE 2111 Lecture 2-Basic Functions and Cell Addressing

22

Copy the formula in cell A2 across to cell C2 and down to cell C4

A B C

1

2 =$A$11+D$4

3

4

CSE 2111 Lecture 2-Basic Functions and Cell Addressing

Fill in the Grid