+ All Categories
Home > Documents > Theme 3: Data Dynamics Topic 18: Analyse data using Excel Chapter 3.3. Page 185 – 199 Analysing...

Theme 3: Data Dynamics Topic 18: Analyse data using Excel Chapter 3.3. Page 185 – 199 Analysing...

Date post: 25-Dec-2015
Category:
Upload: percival-fields
View: 219 times
Download: 0 times
Share this document with a friend
Popular Tags:
26
Theme 3: Data Dynamics Topic 18: Analyse data using Excel Chapter 3.3. Page 185 – 199 Analysing spreadsheet data
Transcript
Page 1: Theme 3: Data Dynamics Topic 18: Analyse data using Excel Chapter 3.3. Page 185 – 199 Analysing spreadsheet data.

Theme 3: Data Dynamics

Topic 18:

Analyse data using Excel

Chapter 3.3. Page 185 – 199

Analysing spreadsheet data

Page 2: Theme 3: Data Dynamics Topic 18: Analyse data using Excel Chapter 3.3. Page 185 – 199 Analysing spreadsheet data.

Excel can be used to analyse data

Page 3: Theme 3: Data Dynamics Topic 18: Analyse data using Excel Chapter 3.3. Page 185 – 199 Analysing spreadsheet data.

Functions that can count

Name What is done Example

COUNT Counts how many numbers

=COUNT(B2:B10)

COUNTA Counts how many values (numbers or text)

=COUNTA(C1:C100)

COUNTBLANK Counts how many empty cells

=COUNTBLANK(A1:A10)

Page 4: Theme 3: Data Dynamics Topic 18: Analyse data using Excel Chapter 3.3. Page 185 – 199 Analysing spreadsheet data.

Acti

vit

yA

cti

vit

y11 Page 186 Explore

Page 5: Theme 3: Data Dynamics Topic 18: Analyse data using Excel Chapter 3.3. Page 185 – 199 Analysing spreadsheet data.

Acti

vit

yA

cti

vit

y22 Page 187 Try it yourself

Page 6: Theme 3: Data Dynamics Topic 18: Analyse data using Excel Chapter 3.3. Page 185 – 199 Analysing spreadsheet data.

Acti

vit

yA

cti

vit

y33 Page 187 Apply

Page 7: Theme 3: Data Dynamics Topic 18: Analyse data using Excel Chapter 3.3. Page 185 – 199 Analysing spreadsheet data.

COUNTIF-functionA B

Name Absent

Janet 7

Anthony  

Lebo 5

Katlego  

Pat 4

Number never absent =COUNTBLANK(B2:B6)

Number more than 5 days absent =COUNTIF(B2:B6,">5")

Page 8: Theme 3: Data Dynamics Topic 18: Analyse data using Excel Chapter 3.3. Page 185 – 199 Analysing spreadsheet data.

Examples of COUNTIF

Contains the value 100

=COUNTIF(A2:A10,100)

Contains the symbol A.

=COUNTIF(C3:C10,”A”)

Contains value more than 80

=COUNTIF(D2:D15,”>80”)

Contains the same value as in A1

=COUNTIF(B4:B14,A1)

Values greater than or equal to 70

=COUNTIF(B4:B14,”>=70”)

Page 9: Theme 3: Data Dynamics Topic 18: Analyse data using Excel Chapter 3.3. Page 185 – 199 Analysing spreadsheet data.

HELP

• Find all the different comparison operators in the Help facilities

• Possible cue words:– Operators– Types of operators– Comparison operators

Page 10: Theme 3: Data Dynamics Topic 18: Analyse data using Excel Chapter 3.3. Page 185 – 199 Analysing spreadsheet data.

Acti

vit

yA

cti

vit

y44 Page 189 Try it yourself

Page 11: Theme 3: Data Dynamics Topic 18: Analyse data using Excel Chapter 3.3. Page 185 – 199 Analysing spreadsheet data.

Acti

vit

yA

cti

vit

y55 Page 189 Apply

Page 12: Theme 3: Data Dynamics Topic 18: Analyse data using Excel Chapter 3.3. Page 185 – 199 Analysing spreadsheet data.

LARGE and SMALL

Name What is done Example

LARGE Determines a certain largest number e.g. the 2nd largest, or the 3rd largest

=LARGE(A2:A30, 2)

=LARGE(A5:A15, 3)

SMALL Determines a certain smallest number e.g. the 2nd smallest, or the 3rd smallest.

=SMALL(A2:A30, 2)

=SMALL(A5:A15, 3)

Page 13: Theme 3: Data Dynamics Topic 18: Analyse data using Excel Chapter 3.3. Page 185 – 199 Analysing spreadsheet data.

Acti

vit

yA

cti

vit

y66 Page 190 Try it yourself

Page 14: Theme 3: Data Dynamics Topic 18: Analyse data using Excel Chapter 3.3. Page 185 – 199 Analysing spreadsheet data.

Acti

vit

yA

cti

vit

y77 Page 191 Apply

Page 15: Theme 3: Data Dynamics Topic 18: Analyse data using Excel Chapter 3.3. Page 185 – 199 Analysing spreadsheet data.

Sum of certain cells

=SUMIF(range, criteria, sum_range)

What are the cells that must be tested?

What are the criteria that

values in cells must comply

with?

Which values must be added to the total if the

criteria are met?

Page 16: Theme 3: Data Dynamics Topic 18: Analyse data using Excel Chapter 3.3. Page 185 – 199 Analysing spreadsheet data.

Example of SUMIF

=SUMIF(B2:B6, 11, C2:C6)

Look at the cells B2:B6

If the value is equal to 11 . .

Add the value in the corresponding cell in column C to the total.

Total = C2 + C4 + C5

=R20 + R10 + R15

=R45

Page 17: Theme 3: Data Dynamics Topic 18: Analyse data using Excel Chapter 3.3. Page 185 – 199 Analysing spreadsheet data.

Acti

vit

yA

cti

vit

y88 Page 192 Explore

Page 18: Theme 3: Data Dynamics Topic 18: Analyse data using Excel Chapter 3.3. Page 185 – 199 Analysing spreadsheet data.

Acti

vit

yA

cti

vit

y99 Page 193 Apply

Page 19: Theme 3: Data Dynamics Topic 18: Analyse data using Excel Chapter 3.3. Page 185 – 199 Analysing spreadsheet data.

The IF function• Allocates a value to a cell depending on

the condition(s) specified.

• Example: Give bonus to employees who have worked more than 5 years.

Page 20: Theme 3: Data Dynamics Topic 18: Analyse data using Excel Chapter 3.3. Page 185 – 199 Analysing spreadsheet data.

How does the IF function work?

=IF(D2 > 5, “BonusBonus”, “No BonusNo Bonus”)

Condition’s answer is always TRUE or

FALSE

TRUETRUE

Writes this value in the cell.

FALSEFALSE

Writes this value in the cell.

Page 21: Theme 3: Data Dynamics Topic 18: Analyse data using Excel Chapter 3.3. Page 185 – 199 Analysing spreadsheet data.

Acti

vit

yA

cti

vit

y1010 Page 194 Check if you understand

Page 22: Theme 3: Data Dynamics Topic 18: Analyse data using Excel Chapter 3.3. Page 185 – 199 Analysing spreadsheet data.

Acti

vit

yA

cti

vit

y1111 Page 195 Explore

Page 23: Theme 3: Data Dynamics Topic 18: Analyse data using Excel Chapter 3.3. Page 185 – 199 Analysing spreadsheet data.

Acti

vit

yA

cti

vit

y1212 Page 195 Try it yourself

Page 24: Theme 3: Data Dynamics Topic 18: Analyse data using Excel Chapter 3.3. Page 185 – 199 Analysing spreadsheet data.

Acti

vit

yA

cti

vit

y1313 Page 195 Apply

Page 25: Theme 3: Data Dynamics Topic 18: Analyse data using Excel Chapter 3.3. Page 185 – 199 Analysing spreadsheet data.

Acti

vit

yA

cti

vit

y1414 Page 196 Checklist

I can . . . .I can . . . .

Page 26: Theme 3: Data Dynamics Topic 18: Analyse data using Excel Chapter 3.3. Page 185 – 199 Analysing spreadsheet data.

Acti

vit

yA

cti

vit

y1515 Page 197 Check if you understand


Recommended