excel 2

14
Excel 2 Marco Pires IT Training and Empowerment

Upload: dominique-anderson

Post on 15-Mar-2016

38 views

Category:

Documents


0 download

DESCRIPTION

Excel 2. Marco Pires IT Training and Empowerment. Formulas. Writing Excel formulas is a little different than the way it is done in math class. Excel formulas starts with the equal sign ( = ) rather than ending with it. - PowerPoint PPT Presentation

TRANSCRIPT

Page 1: Excel 2

Excel 2

Marco PiresIT Training and Empowerment

Page 2: Excel 2

Formulas

Writing Excel formulas is a little different than the way it is done in math class.

Excel formulas starts with the equal sign ( = ) rather than ending with it.

The equal sign informs Excel that what follows is part of a formula, and not just a name or a number.

Excel formulas look like this:

=3 + 2

rather than:

3 + 2 =

Page 3: Excel 2

Formulas

To find a cell reference, simply look at the column headings to find which column the cell is in, and across to find which row it is in.

The cell reference is a combination of the column letter and row number -- such as A1, B3, or Z345. When writing cell references the column letter always comes first.

So, instead of writing this formula in cell C1:

= 3 + 2

write this instead:

= A1+A2

If you have typed the = then clicking the cell will reference it.

Page 4: Excel 2

Formulas

When you use cell references in Excel formulas, the formulas will automatically update whenever the relevant data in the spread sheet changes. For example, if you realize that the data in cell A1 should have been an 8 instead of a 3, you only need to change the contents of cell A1. Excel updates the answer in cell C1. The formula, itself, doesn't need to change because it was written using cell references.

Changing the data

1. Click on the cell A1 2. Type an 8 3. Press the ENTER key on the keyboard

The answer in cell C1 where the formula is, immediately changes from 5 to 10, but the formula itself is unchanged.

Open the spread sheet named "formulas1"

Page 5: Excel 2

Mathematical Operators

The mathematical operators used in Excel formulas are similar to the ones used in math class. Subtraction - minus sign ( - ) Addition - plus sign ( + ) Division - forward slash ( / ) Multiplication - asterisk (* ) Exponentiation - caret (^ )Order of Operations If more than one operator is used in a formula, there is a specific order that Excel will follow to perform these mathematical operations. This order of operations can be changed by adding brackets to the equation. An easy way to remember the order of operations is to use the acronym: BEDMASThe Order of Operations is: BracketsExponentsDivisionMultiplicationAdditionSubtraction

Page 6: Excel 2

Functions

What is a function?

A function is a pre-set formula in Excel. Like formulas, functions begin with the equal sign ( = ) followed by the function's name and its arguments. The function name tells Excel what calculation to perform. The arguments are contained inside round brackets.

Lets look at the SUM function…

= SUM (B1:B3)

Indicates function/formula

Indicates which function to use

Indicates to what the function should be

applicable to

Lets break up the function into pieces

Page 7: Excel 2

FunctionsExcel Function Description

SUM Calculates the sum of a group of values

AVERAGE Calculates the mean of a group of values

COUNT Counts the number of cells in a range that contains numbers

INT Removes the decimal portion of a number, leaving just the integer portion

ROUND Rounds a number to a specified number of decimal places or digit positions

IF Tests for a true or false condition and then returns one value or another

NOW Returns the system date and time

TODAY Returns the system date, without the time

SUMIFCalculates a sum from a group of values, but just of values that are included because a condition is met

COUNTIF Counts the number of cells in a range that match a criteria

Page 8: Excel 2

Functions

Lets look at the IF function…

=IF(logical_test,value_if_true,value_if_false)

Lets break up the IF function…

= IF ( logical_test , value_if_true , value_if_false )

Indicates function/formula

Indicates which function to use

Indicates the start of an argument Indicates the end of an argument

What the function should test?

Separator Separator

What the function should do if the test

is true

What the function should do if the test

is false

Page 9: Excel 2

In the spread sheet named "formulas1"

Functions

We are going to insert a IF function to test whether the cell A2 contains a value of 2

Note the IF function =IF(A2=2,"true","false")

Note what the content of the cell is because the condition is true

Page 10: Excel 2

Pivot tables

Page 11: Excel 2

What does the following have in common?

Page 12: Excel 2

Pivots

• All the objects in the pictures rotate/swivel so that they can change weather in be vertically are horizontally in order for the object to be useful or achieve an outcome

• Since Excel has horizontal rows and vertical columns this principle can be applied to spread sheets as well.

How can this work for information?

Page 13: Excel 2

Pivot tables

Page 14: Excel 2

Pivot tables

Open the spread sheet "Amazon 2009"