130
CIS300 Test Review © 2011 REACH All Rights Reserved. Fall 2011

© 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

Embed Size (px)

Citation preview

Page 1: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

CIS300 Test Review

© 2011 REACH All Rights Reserved.Fall 2011

Page 2: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

CIS300 Test 2

•Mathematical Functions• ROUND• SUMIF

• Statistical Functions• AVERAGEIF• COUNTIF• LARGE• SMALL

•Lookup Functions• HLOOKUP• LOOKUP• VLOOKUP

•Information Functions• ISERROR• ISNA• ISREF

Page 3: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

Microsoft Excel

Mathematical Functions

ROUND=ROUND(number,num_digits)

SUMIF=SUMIF(range,criteria,[sum_range])

Page 4: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

The ROUND function

Microsoft® Excel® Mathematical Functions

Syntax:

=ROUND(number, num_digits)

Arguments:•number Required

The number that you want to round.•num_digits Required

The number of digits to which you want to round the number argument.

Page 5: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

The ROUND function

Microsoft® Excel® Mathematical Functions

Description:• Rounds a number to a specified number of digits.

Remarks:• If num_digits is greater than 0 (zero), then number is rounded to

the specified number of decimal places.• If num_digits is 0, the number is rounded to the nearest integer. • If num_digits is less than 0, the number is rounded to the left of

the decimal point.

Errors:None

Page 6: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

The ROUND function

Microsoft® Excel® Mathematical Functions

=ROUND(-1.475,2) Rounds -1.475 to two decimal places

Page 7: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

Textbook Question

To a great extent, the operating system determines which applications a computer can run.

A) TRUEB) FALSE

Page 8: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

Textbook Question

To a great extent, the operating system determines which applications a computer can run.

A) TRUE B) FALSE

Ref: p.61

Page 9: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

The SUMIF function

Microsoft® Excel® Mathematical Functions

Syntax:

=SUMIF(range, criteria, [sum_range])

Arguments:•range Required

The range of cells that you want evaluated by criteria.o Cells in each range must be numbers or names, arrays, or references that

contain numbers.o Blank and text values are ignored.

criteria Required The criteria in the form of a number, expression, a cell reference, text, or a

function that defines which cells will be added.o Criteria can be expressed as 32, ">32", B5, "32", "apples", or TODAY().

•sum_range Optional The actual cells to add, if you want to add cells other than those specified in the

range argument.o Excel adds the cells that are specified in the range argument (the same cells

to which the criteria is applied).

Page 10: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

The SUMIF function

Microsoft® Excel® Mathematical Functions

Description:• Sums the values in a range that meet criteria that you specify.

Remarks:• See the Microsoft® Excel® help for additional remarks.

Errors:None

Page 11: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

The SUMIF function

Microsoft® Excel® Mathematical Functions

Page 12: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

Textbook Question

Adding to a product or service to increase its value to the consumer is called ____.

A) adding valueB) enhancing existing products or

servicesC) increasing valueD) incrementing service

Page 13: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

Textbook Question

Adding to a product or service to increase its value to the consumer is called ____.

A) adding valueB) enhancing existing products or

services C) increasing valueD) incrementing service

Ref. pp. 49-50

Page 14: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

Microsoft Excel

Statistical Functions

AVERAGEIF=AVERAGEIF(range,criteria,[average_range])

COUNTIF=COUNTIF(range, criteria)

LARGE=LARGE(array,k)

SMALL=SMALL(array,k)

Page 15: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

The AVERAGEIF function

Microsoft® Excel® Statistical Functions

Syntax:

=AVERAGEIF(range, criteria, [average_range])

Arguments:•range Required

One or more cells to average, including numbers or names, arrays, or references that contain numbers.

•criteria Required The criteria in the form of a number, expression, cell reference, or

text that defines which cells are averaged.•average_range Optional

The actual set of cells to average.

Page 16: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

The AVERAGEIF function

Microsoft® Excel® Statistical Functions

Description:• Returns the average (arithmetic mean) of all the cells in a range

that meet a given criteria.

Remarks:• If average_range is omitted, range is used.• Cells in range that contain TRUE or FALSE are ignored.• If a cell in average_range is an empty cell, AVERAGEIF ignores it.• If a cell in criteria is empty, AVERAGEIF treats it as a 0 value.

Errors:#DIV/0 – If range is a blank or text value.

#DIV/0 – If no cells in the range meet the criteria.

Page 17: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

The AVERAGEIF function

Microsoft® Excel® Statistical Functions

=AVERAGEIF(B2:B5,"<23000")

Page 18: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

The AVERAGEIF function

Microsoft® Excel® Statistical Functions

=AVERAGEIF(B2:B5,"<23000")=14000

Page 19: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

The AVERAGEIF function

Microsoft® Excel® Statistical Functions

=AVERAGEIF(A2:A5,"<95000")

Page 20: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

The AVERAGEIF function

Microsoft® Excel® Statistical Functions

=AVERAGEIF(A2:A5,"<95000")=#DIV/0

Page 21: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

The AVERAGEIF function

Microsoft® Excel® Statistical Functions

=AVERAGEIF(A2:A5,">250000",B2:B5)

Page 22: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

The AVERAGEIF function

Microsoft® Excel® Statistical Functions

=AVERAGEIF(A2:A5,">250000",B2:B5)=24500

Page 23: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

The COUNTIF function

Microsoft® Excel® Statistical Functions

Syntax:

=COUNTIF(range, criteria)

Arguments:•range Required

One or more cells to count, including numbers or names, arrays, or references that contain numbers.o Blank and text values are ignored.

criteria Required A number, expression, cell reference, or text string that defines

which cells will be counted.o Criteria can be expressed as 32, ">32", B4, "apples", or "32".

Page 24: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

The COUNTIF function

Microsoft® Excel® Statistical Functions

Description:• Counts the number of cells within a range that meet a single

criterion that you specify.

Remarks:• See the Microsoft® Excel® help for additional remarks.• Criteria are case insensitive

Errors:None

Page 25: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

The COUNTIF function

Microsoft® Excel® Statistical Functions

Page 26: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

Textbook Question

Implementation of a(n) ____ requires a business to revamp processes—to undergo organizational change—to gain an advantage.

A) BIB) CRMC) GISD) SIS

Page 27: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

Textbook Question

Implementation of a(n) ____ requires a business to revamp processes—to undergo organizational change—to gain an advantage.

A) BIB) CRMC) GIS

D)SIS Ref: p. 56

Page 28: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

Creating and Maintaining Strategic Information Systems

Many opportunities to accomplish competitive edge with information technology

Innovative software can establish a competitive advantage

Strategic information systems can be created from scratch or by modifying a previous system

To be an SIS, an information system must: Serve an organization goal Collaborate with other functional units of company

Management Information Systems, Sixth Edition 28

Page 29: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

The LARGE function

Microsoft® Excel® Statistical Functions

Syntax:

=LARGE(array,k)

Arguments:•array Required

The array or range of data for which you want to determine the k-th largest value.

k Required The position (from the largest) in the array or cell range of data

to return.

Page 30: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

The LARGE function

Microsoft® Excel® Statistical Functions

Description:• Returns the k-th largest value in a data set.

Remarks:• If n is the number of data points in a range, then LARGE(array,1) returns

the largest value.• If n is the number of data points in a range, then LARGE(array,n) returns

the smallest value.

Errors:#NUM! – If array is empty#NUM! – If k ≤ 0#NUM! – If k is greater than the number of data points

Page 31: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

=LARGE(array,k)

3rd largest number in the numbers in columns A and B

Page 32: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

=LARGE(array,k)=LARGE(A2:B6

3rd largest number in the numbers in columns A and B

Page 33: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

=LARGE(array,k)=LARGE(A2:B6,3)

3rd largest number in the numbers in columns A and B

Page 34: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

=LARGE(array,k)=LARGE(A2:B6,3)

3rd largest number in the numbers in columns A and B

List the numbers in descending order:

7655444332

=5

Page 35: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

=LARGE(array,k)

7th largest number in the numbers in columns A and B

Page 36: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

=LARGE(array,k)=LARGE(A2:B6

7th largest number in the numbers in columns A and B

Page 37: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

=LARGE(array,k)=LARGE(A2:B6,7)

7th largest number in the numbers in columns A and B

Page 38: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

=LARGE(array,k)=LARGE(A2:B6,7)

7th largest number in the numbers in columns A and B

List the numbers in descending order:

7655444332

Page 39: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

=LARGE(array,k)=LARGE(A2:B6,7)

7th largest number in the numbers in columns A and B

List the numbers in descending order:

7655444332

=4

Page 40: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

Textbook Question

A company achieves ____________________ by using strategy to maximize its strengths, resulting in a competitive advantage.

Page 41: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

Textbook Question

A company achieves strategic advantage by using strategy to maximize its strengths, resulting in a competitive advantage.

Ref. p. 42

Page 42: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

The SMALL function

Microsoft® Excel® Statistical Functions

Syntax:

=SMALL(array,k)

Arguments:•array Required

The array or range of data for which you want to determine the k-th smallest value.

k Required The position (from the smallest) in the array or cell range of data

to return.

Page 43: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

The SMALL function

Microsoft® Excel® Statistical Functions

Description:• Returns the k-th smallest value in a data set.

Remarks:• If n is the number of data points in a range, then SMALL(array,1) returns

the smallest value.• If n is the number of data points in a range, then SMALL(array,n) returns

the largest value.

Errors:#NUM! – If array is empty#NUM! – If k ≤ 0#NUM! – If k is greater than the number of data points

Page 44: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

=SMALL(array,k)

4th smallest number in first column

Page 45: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

=SMALL(array,k)=SMALL(A2:A10

4th smallest number in first column

Page 46: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

=SMALL(array,k)=SMALL(A2:A10,4)

4th smallest number in first column

List the numbers in ascending order:

233444567

Page 47: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

=SMALL(array,k)=SMALL(A2:A10,4)

4th smallest number in first column

List the numbers in ascending order:

233444567

=4

Page 48: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

=SMALL(array,k)

2nd smallest number in second column

Page 49: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

=SMALL(array,k)=SMALL(B2:B10

2nd smallest number in second column

Page 50: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

=SMALL(array,k)=SMALL(B2:B10,2)

2nd smallest number in second column

List the numbers in ascending order:

134788

122354

Page 51: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

=SMALL(array,k)=SMALL(B2:B10,2)

2nd smallest number in second column

=3

List the numbers in ascending order:

134788

122354

Page 52: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

Textbook Question

When the process of marketing products is complete, the next link in the supply chain is shipping.

A) TRUEB) FALSE

Page 53: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

Textbook Question

When the process of marketing products is complete, the next link in the supply chain is shipping.

A) TRUE

B) FALSE

Page 54: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

Supply Chain Management

Supply chain: consists of procurement of raw materials, processing materials into goods, and delivering goods

Processing raw materials into goods is also known as manufacturing

Supply chain management: monitoring, controlling, and facilitating supply chains

CAD systems often transfer data automatically to CAM systems

Management Information Systems, Sixth Edition 54

Page 55: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

The VLOOKUP function

Microsoft® Excel® Lookup Functions

Syntax:=VLOOKUP(lookup_value,table_array,col_index_num,[range_lookup])

Arguments:•lookup_value Required

The value to search in the first column of the table or range.•table_array Required

The range of cells that contains the data. •col_index_num Required

The column number in the table_array argument from which the matching value must be returned.

•range_lookup Optional A logical value that specifies whether you want VLOOKUP to find

an exact match or an approximate match.

Page 56: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

The VLOOKUP function

Microsoft® Excel® Lookup Functions

Description:• Searches the first column of a range of cells, and then returns a

value from any cell on the same row of the range.

Remarks:• The values in the first column of table_array can be text, numbers, or logical values.

•Uppercase and lowercase text are equivalent.

• If range_lookup is TRUE, the values in the first column of table_array must be placed in ascending order.

• If range_lookup is TRUE or omitted, an approximate match is returned.

• If range_lookup is FALSE, an exact match will be attempted.

Page 57: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

The VLOOKUP function

Microsoft® Excel® Lookup Functions

Errors:#VALUE! – If col_index_num is less than 1

#REF! – If col_index_num is greater than the number of columns in the table_array

#N/A – If range_lookup is FALSE and an exact match cannot be found

#N/A – If lookup_value is less than the smallest value in the first column of table_array

Page 58: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

(1) =VLOOKUP(C11*2, $B$8:$G$24, G18/E6, TRUE)

(2) =VLOOKUP(IF(MIN(B6:F18)<>MAX(D3:G5), 38, 83), E11:G22,3)

(3) =VLOOKUP(MAX(B3:G4)*B6/G3, $C$8:$F$20, 3, FALSE)

(4) =VLOOKUP(C3*E3, C8:F20, IF(SUM(B3:B24)>SUM(F3:F24), 2, 4))

(5) =VLOOKUP(LARGE(D10:G17,4), $C$8:$F$20, 5, FALSE)

Page 59: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

(1) =VLOOKUP(C11*2, $B$8:$G$24, G18/E6, TRUE)

Page 60: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

(1) =VLOOKUP(C11*2, $B$8:$G$24, G18/E6, TRUE)

=VLOOKUP(44*2, $B$8:$G$24, G18/E6, TRUE)

Page 61: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

(1) =VLOOKUP(C11*2, $B$8:$G$24, G18/E6, TRUE)

=VLOOKUP(44*2, $B$8:$G$24, G18/E6, TRUE)

=VLOOKUP(88, $B$8:$G$24, G18/E6, TRUE)

Page 62: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

(1) =VLOOKUP(C11*2, $B$8:$G$24, G18/E6, TRUE)

=VLOOKUP(44*2, $B$8:$G$24, G18/E6, TRUE)

=VLOOKUP(88, $B$8:$G$24, G18/E6, TRUE)

Page 63: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

(1) =VLOOKUP(C11*2, $B$8:$G$24, G18/E6, TRUE)

=VLOOKUP(44*2, $B$8:$G$24, G18/E6, TRUE)

=VLOOKUP(88, $B$8:$G$24, G18/E6, TRUE)

=VLOOKUP(88, $B$8:$G$24, 66/E6, TRUE)

Page 64: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

(1) =VLOOKUP(C11*2, $B$8:$G$24, G18/E6, TRUE)

=VLOOKUP(44*2, $B$8:$G$24, G18/E6, TRUE)

=VLOOKUP(88, $B$8:$G$24, G18/E6, TRUE)

=VLOOKUP(88, $B$8:$G$24, 66/E6, TRUE)

=VLOOKUP(88, $B$8:$G$24, 66/11, TRUE)

Page 65: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

(1) =VLOOKUP(C11*2, $B$8:$G$24, G18/E6, TRUE)

=VLOOKUP(44*2, $B$8:$G$24, G18/E6, TRUE)

=VLOOKUP(88, $B$8:$G$24, G18/E6, TRUE)

=VLOOKUP(88, $B$8:$G$24, 66/E6, TRUE)

=VLOOKUP(88, $B$8:$G$24, 66/11, TRUE)

=VLOOKUP(88, $B$8:$G$24, 6, TRUE)

Page 66: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

(2) =VLOOKUP(IF(MIN(B6:F18)<>MAX(D3:G5), 38, 83), E11:G22,3)

Page 67: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

(2) =VLOOKUP(IF(MIN(B6:F18)<>MAX(D3:G5), 38, 83), E11:G22,3)

=VLOOKUP(IF(11<>MAX(D3:G5), 38, 83), E11:G22,3)

Page 68: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

(2) =VLOOKUP(IF(MIN(B6:F18)<>MAX(D3:G5), 38, 83), E11:G22,3)

=VLOOKUP(IF(11<>MAX(D3:G5), 38, 83), E11:G22,3)

=VLOOKUP(IF(11<>11, 38, 83), E11:G22,3)

Page 69: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

(2) =VLOOKUP(IF(MIN(B6:F18)<>MAX(D3:G5), 38, 83), E11:G22,3)

=VLOOKUP(IF(11<>MAX(D3:G5), 38, 83), E11:G22,3)

=VLOOKUP(IF(11<>11), 38, 83), E11:G22,3)

=VLOOKUP(IF(FALSE, 38, 83), E11:G22,3)

Page 70: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

(2) =VLOOKUP(IF(MIN(B6:F18)<>MAX(D3:G5), 38, 83), E11:G22,3)

=VLOOKUP(IF(11<>MAX(D3:G5), 38, 83), E11:G22,3)

=VLOOKUP(IF(11<>11), 38, 83), E11:G22,3)

=VLOOKUP(IF(FALSE, 38, 83), E11:G22,3)

=VLOOKUP(83, E11:G22,3)

Page 71: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

(2) =VLOOKUP(IF(MIN(B6:F18)<>MAX(D3:G5), 38, 83), E11:G22,3)

=VLOOKUP(IF(11<>MAX(D3:G5), 38, 83), E11:G22,3)

=VLOOKUP(IF(11<>11), 38, 83), E11:G22,3)

=VLOOKUP(IF(FALSE, 38, 83), E11:G22,3)

=VLOOKUP(83, E11:G22,3)

Page 72: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

(3) =VLOOKUP(MAX(B3:G4)*B6/G3, $C$8:$F$20, 3, FALSE)

Page 73: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

(3) =VLOOKUP(MAX(B3:G4)*B6/G3, $C$8:$F$20, 3, FALSE)

=VLOOKUP(17*B6/G3, $C$8:$F$20, 3, FALSE)

Page 74: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

(3) =VLOOKUP(MAX(B3:G4)*B6/G3, $C$8:$F$20, 3, FALSE)

=VLOOKUP(17*B6/G3, $C$8:$F$20, 3, FALSE)

=VLOOKUP(17*18/G3, $C$8:$F$20, 3, FALSE)

Page 75: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

(3) =VLOOKUP(MAX(B3:G4)*B6/G3, $C$8:$F$20, 3, FALSE)

=VLOOKUP(17*B6/G3, $C$8:$F$20, 3, FALSE)

=VLOOKUP(17*18/G3, $C$8:$F$20, 3, FALSE)

=VLOOKUP(306/G3, $C$8:$F$20, 3, FALSE)

Page 76: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

(3) =VLOOKUP(MAX(B3:G4)*B6/G3, $C$8:$F$20, 3, FALSE)

=VLOOKUP(17*B6/G3, $C$8:$F$20, 3, FALSE)

=VLOOKUP(17*18/G3, $C$8:$F$20, 3, FALSE)

=VLOOKUP(306/G3, $C$8:$F$20, 3, FALSE)

=VLOOKUP(306/6, $C$8:$F$20, 3, FALSE)

Page 77: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

(3) =VLOOKUP(MAX(B3:G4)*B6/G3, $C$8:$F$20, 3, FALSE)

=VLOOKUP(17*B6/G3, $C$8:$F$20, 3, FALSE)

=VLOOKUP(17*18/G3, $C$8:$F$20, 3, FALSE)

=VLOOKUP(306/6, $C$8:$F$20, 3, FALSE)

=VLOOKUP(51, $C$8:$F$20, 3, FALSE)

Page 78: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

(3) =VLOOKUP(MAX(B3:G4)*B6/G3, $C$8:$F$20, 3, FALSE)

=VLOOKUP(17*B6/G3, $C$8:$F$20, 3, FALSE)

=VLOOKUP(17*18/G3, $C$8:$F$20, 3, FALSE)

=VLOOKUP(306/6, $C$8:$F$20, 3, FALSE)

=VLOOKUP(51, $C$8:$F$20, 3, FALSE)

#N/A

Page 79: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

(4) =VLOOKUP(C3*E3, C8:F20, IF(SUM(B3:B24)>SUM(F3:F24), 2, 4))

Page 80: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

(4) =VLOOKUP(C3*E3, C8:F20, IF(SUM(B3:B24)>SUM(F3:F24), 2, 4))

=VLOOKUP(11*E3, C8:F20, IF(SUM(B3:B24)>SUM(F3:F24), 2, 4))

Page 81: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

(4) =VLOOKUP(C3*E3, C8:F20, IF(SUM(B3:B24)>SUM(F3:F24), 2, 4))

=VLOOKUP(11*E3, C8:F20, IF(SUM(B3:B24)>SUM(F3:F24), 2, 4))

=VLOOKUP(11*5, C8:F20, IF(SUM(B3:B24)>SUM(F3:F24), 2, 4))

Page 82: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

(4) =VLOOKUP(C3*E3, C8:F20, IF(SUM(B3:B24)>SUM(F3:F24), 2, 4))

=VLOOKUP(11*E3, C8:F20, IF(SUM(B3:B24)>SUM(F3:F24), 2, 4))

=VLOOKUP(11*5, C8:F20, IF(SUM(B3:B24)>SUM(F3:F24), 2, 4))

=VLOOKUP(55, C8:F20, IF(1000>SUM(F3:F24), 2, 4))

Page 83: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

(4) =VLOOKUP(C3*E3, C8:F20, IF(SUM(B3:B24)>SUM(F3:F24), 2, 4))

=VLOOKUP(11*E3, C8:F20, IF(SUM(B3:B24)>SUM(F3:F24), 2, 4))

=VLOOKUP(11*5, C8:F20, IF(SUM(B3:B24)>SUM(F3:F24), 2, 4))

=VLOOKUP(55, C8:F20, IF(1000>SUM(F3:F24), 2, 4))

=VLOOKUP(55, C8:F20, IF(1000>924, 2, 4))

Page 84: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

(4) =VLOOKUP(C3*E3, C8:F20, IF(SUM(B3:B24)>SUM(F3:F24), 2, 4))

=VLOOKUP(55, C8:F20, IF(1000>924, 2, 4))

=VLOOKUP(55, C8:F20, IF(TRUE, 2, 4))

=VLOOKUP(55, C8:F20, 2)

Page 85: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

(4) =VLOOKUP(C3*E3, C8:F20, IF(SUM(B3:B24)>SUM(F3:F24), 2, 4))

=VLOOKUP(55, C8:F20, 2)

Page 86: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

(5) =VLOOKUP(LARGE(D10:G17,4), $C$8:$F$20, 5, FALSE)

Page 87: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

(5) =VLOOKUP(LARGE(D10:G17,4), $C$8:$F$20, 5, FALSE)

=VLOOKUP(58, $C$8:$F$20, 5, FALSE)

Page 88: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

(5) =VLOOKUP(LARGE(D10:G17,4), $C$8:$F$20, 5, FALSE)

=VLOOKUP(58, $C$8:$F$20, 5, FALSE)

#REF!

Page 89: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

The HLOOKUP function

Microsoft® Excel® Lookup Functions

Syntax:= HLOOKUP(lookup_value,table_array,row_index_num,range_lookup)

Arguments:•lookup_value Required

The value to search in the first row of the table or range.•table_array Required

The range of cells that contains the data. •row_index_num Required

The row number in table_array from which the matching value will be returned

range_lookup Optional A logical value that specifies whether you want HLOOKUP to find

an exact match or an approximate match.

Page 90: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

The HLOOKUP function

Microsoft® Excel® Lookup Functions

Description:• Searches for a value in the top row of a table or an array of

values, and then returns a value in the same column from a row you specify in the table or array.

Remarks:• If HLOOKUP can't find lookup_value, and range_lookup is TRUE, it uses the largest value that is less than lookup_value.

• If lookup_value is smaller than the smallest value in the first row of table_array, HLOOKUP returns the #N/A error value.

Page 91: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

The HLOOKUP function

Microsoft® Excel® Lookup Functions

Errors:#VALUE! – If row_index_num is less than 1

#REF! – If row_index_num is greater than the number of rows in the table_array

#N/A – If range_lookup is FALSE and an exact match cannot be found

#N/A – If lookup_value is less than the smallest value in the first row of table_array

Page 92: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

The HLOOKUP function  A B C1 Axles Bearings Bolts2 4 4 93 5 7 104 6 8 11

FormulaDescription (Result)Looks up Axles in row 1, and returns the value from row 2 that's in the same column. (4)

=HLOOKUP("Axles",A1:C4,2,TRUE)

=HLOOKUP("Bearings",A1:C4,3,FALSE)

Looks up Bearings in row 1, and returns the value from row 3 that's in the same column. (7)

=HLOOKUP("B",A1:C4,3,TRUE)

Looks up B in row 1, and returns the value from row 3 that's in the same column. Because B is not an exact match, the next largest value that is less than B is used: Axles. (5)

=HLOOKUP("Bolts",A1:C4,4) Looks up Bolts in row 1, and returns the value from row 4 that's in the same column. (11)

Page 93: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

The LOOKUP function

Microsoft® Excel® Lookup Functions

The Lookup function has two forms:

If you want to Then see Usage

Look in a one-row or one-column range (known as a vector) for a value and return a value from the same position in a second one-row or one-column range

Vector form

Use the vector form when you have a large list of values to look up or when the values may change over time.

Look in the first row or column of an array for the specified value and return a value from the same position in the last row or column of the array

Array form

Use the array form when you have a small list of values and the values remain constant over time.

  Notes  

Page 94: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

The LOOKUP function – Vector Form

Microsoft® Excel® Lookup Functions

Syntax:=LOOKUP(lookup_value, lookup_vector, result_vector)

Arguments:•lookup_value Required

Value that LOOKUP searches for in the first vector. Can be a number, text, a logical value, or a name or reference

that refers to a value.•lookup_vector Required

A range that contains only one row or one column. The values can be text, numbers, or logical values.

result_vector Required A range that contains only one row or column. Must be the same size as lookup_vector.

Page 95: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

The LOOKUP function – Vector Form

Microsoft® Excel® Lookup Functions

Remarks:•If the LOOKUP function can't find the lookup_value, the function matches the largest value in lookup_vector that is less than or equal to lookup_value. •If lookup_value is smaller than the smallest value in lookup_vector, LOOKUP returns the #N/A error value.

Page 96: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

The LOOKUP function – Array Form

Microsoft® Excel® Lookup Functions

Syntax:

= LOOKUP(lookup_value, array)

Arguments:• lookup_value Required

Value that LOOKUP searches for in an array. Can be a number, text, a logical value, or a name or reference

that refers to a value.• array Required

A range of cells that contains text, numbers, or logical values that you want to compare with lookup_value.

Page 97: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

The LOOKUP function – Array Form

Microsoft® Excel® Lookup Functions

Remarks:• If LOOKUP can't find the value of lookup_value, it uses the

largest value in the array that is less than or equal to lookup_value.

• If the value of lookup_value is smaller than the smallest value in the first row or column (depending on the array dimensions), LOOKUP returns the #N/A error value.

• If array covers an area that is wider than it is tall (more columns than rows), LOOKUP searches for the value of lookup_value in the first row.

• If an array is square or is taller than it is wide (more rows than columns), LOOKUP searches in the first column.

• With the HLOOKUP and VLOOKUP functions, you can index down or across, but LOOKUP always selects the last value in the row or column.

Page 98: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

The LOOKUP function  A B

1 Frequency Color

2 4.14 red

3 4.19 orange

4 5.17 yellow

5 5.77 green

6 6.39 blue

Formula Description Result=LOOKUP(4.19,A2:A6,B2:B6)

Looks up 4.19 in column A, and returns the value from column B that is in the same row.

orange

=LOOKUP(5.00,A2:A6,B2:B6)

Looks up 5.00 in column A, matches the next smallest value (4.19), and returns the value from column B that is in the same row.

orange

=LOOKUP(7.66,A2:A6,B2:B6)

Looks up 7.66 in column A, matches the next smallest value (6.39), and returns the value from column B that is in the same row.

blue

=LOOKUP(0,A2:A6,B2:B6)Looks up 0 in column A, and returns an error because 0 is less than the smallest value in the lookup_vector A2:A7.

#N/A

Page 99: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

Quiz Question

LOOKUP is very similar to VLOOKUP and HLOOKUP. The difference is that HLOOKUP searches for the lookup_value in the first row, VLOOKUP searches in the first column, and LOOKUP searches according to the dimensions of an array.

A. TRUEB. FALSE

Page 100: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

Quiz Question

LOOKUP is very similar to VLOOKUP and HLOOKUP. The difference is that HLOOKUP searches for the lookup_value in the first row, VLOOKUP searches in the first column, and LOOKUP searches according to the dimensions of an array.

A. TRUEB. FALSE

Page 101: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

Textbook Question

____, used to accumulate data about costs involved in producing specific products, make excellent use of IT to compile pricing data.

A) ERP SystemsB) Cost-accounting SystemsC) Human Resources SystemsD) SCM Systems

Page 102: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

Textbook Question

____, used to accumulate data about costs involved in producing specific products, make excellent use of IT to compile pricing data.

A) ERP Systems

B) Cost-accounting Systems C) Human Resources SystemsD) SCM Systems

Ref: p.81

Page 103: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

Textbook Question

When a pattern of defects is discovered in a product, ____________________ helps pinpoint the plant at which it was produced and the particular lot from which it came.

Page 104: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

Textbook Question

When a pattern of defects is discovered in a product, ______R F I D_______ helps pinpoint the plant at which it was produced and the particular lot from which it came.

Ref: p.91

Page 105: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

Microsoft Excel

Information Functions

ISNA=ISNA(value)

ISERROR=ISERROR(value)

ISREF=ISREF(value)

Page 106: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

The ISNA function

Microsoft® Excel® Information Functions

Syntax:

=ISNA(value)

Arguments:•value Required

The value that you want tested

Page 107: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

The ISNA function

Microsoft® Excel® Information Functions

Description:• Returns TRUE if value refers to the #N/A (value not available)

error value.

Remarks:• The value arguments of the IS functions are not converted•Any numeric values that are enclosed in double quotation marks are treated as text.•The IS functions are useful in formulas for testing the outcome of a calculation

Errors:None

Page 108: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

The ISNA function

Microsoft® Excel® Information Functions

Page 109: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

The ISNA function

Microsoft® Excel® Information Functions

Page 110: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

The ISERROR function

Microsoft® Excel® Information Functions

Syntax:

=ISERROR(value)

Arguments:•value Required

The value that you want tested

Page 111: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

The ISERROR function

Microsoft® Excel® Information Functions

Description:• Returns TRUE if value refers to any error value:

• #N/A #VALUE! #REF! #DIV/0!

• #NUM! #NAME? #NULL!

Remarks:• The value arguments of the IS functions are not converted•Any numeric values that are enclosed in double quotation marks are treated as text.•The IS functions are useful in formulas for testing the outcome of a calculation

Errors:None

Page 112: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

The ISREF function

Microsoft® Excel® Information Functions

Syntax:

=ISREF(value)

Arguments:•value Required

The value that you want tested

Page 113: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

The ISREF function

Microsoft® Excel® Information Functions

Description:• Returns TRUE if the value is a reference

Remarks:• The value arguments of the IS functions are not converted•Any numeric values that are enclosed in double quotation marks are treated as text.•The IS functions are useful in formulas for testing the outcome of a calculation

Errors:None

Page 114: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

The ISREF function

FORMULA DESCRIPTION RESULT

=ISREF(XYZ1) Checks if XYZ1 is a valid reference

FALSE

ISREF(C1) Checks if C1 is a valid reference

TRUE

Page 115: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

Databases & Data WarehousesExtra Material

Page 116: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

Database Approach

Entity – any object about which an organization chooses to collect data. Ex. Types of people: employees, students, contractors, etc.

Character – the smallest piece of dataField – one piece of information about an entity Ex.

First Name or Last Name. Multiple characters make up a field

Record – the fields related to the same entity make up a record

File – A collection of related records Ex. All the records of a colleges’ students

Database – a collection of one or more filesRef. p 235

Page 117: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

Textbook Question

There are two overall approaches to maintaining data: the traditional file approach—which has no mechanism for tagging, retrieving, and manipulating data—and the ____, which does have this mechanism.

A) Database ApproachB) Data ApproachC) Datafile ApproachD) Indexed file approach

Page 118: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

Textbook Question

There are two overall approaches to maintaining data: the traditional file approach—which has no mechanism for tagging, retrieving, and manipulating data—and the ____, which does have this mechanism.

A) Database ApproachB) Data ApproachC) Datafile ApproachD) Indexed file approach Ref. p.

234

Page 119: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

Textbook Question

A collection of related records, such as all the records of a college’s students, is called a(n)

A) FieldB) CharacterC) ItemD) File

Page 120: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

Textbook Question

A collection of related records, such as all the records of a college’s students, is called a(n)

A) FieldB) CharacterC) ItemD)File

Ref p. 235

Page 121: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

Textbook Question

A ____ is the general logical structure in which records are stored within a database and the method used to establish relationships among the records.

A) database relationshipB) database modelC) database listD) database catalog

Page 122: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

Textbook Question

A ____ is the general logical structure in which records are stored within a database and the method used to establish relationships among the records.

A) database relationshipB) database modelC) database listD) database catalog

Ref p. 238

Page 123: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

Textbook Question

While a database itself is a collection of several related files, the program used to build databases, populate them with data, and manipulate the data is called a(n) ____________________.

Page 124: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

Textbook Question

While a database itself is a collection of several related files, the program used to build databases, populate them with data, and manipulate the data is called a(n) DBMS – Database Management System.

Ref. p 236

Page 125: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

Textbook Question

Because of capacity needs, organizations often choose ____ to store and manage data warehouses.

A) midrange serversB) high speed networksC) mainframe computers with multiple

CPUsD) workstations

Page 126: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

Textbook Question

Because of capacity needs, organizations often choose ____ to store and manage data warehouses.

A) midrange serversB) high speed networksC) mainframe computers with

multiple CPUsD) Workstations

Ref. p 250

Page 127: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

Textbook Question

Multiple characters make up a record.

A. TRUEB. FALSE

Page 128: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

Textbook Question

Multiple characters make up a record.

A. TRUEB. FALSE

Ref. p 235

Page 129: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

PRACTICE

(Excel) You are creating a new forecast for your company's Marketing group and have entered the sales for 2005 into cell B4 of a spreadsheet. The expected rate of increase is in cell C2. What formula would you enter in cell C4 to compute the sales for 2006, given that you will copy that formula to cells D4:E4 to calculate the forecast for 2007 and 2008?

A. =B$4+B$4*C$2B. =$B$4+$B$4*C2 C. =$B4+$B4*$C2D. =B4*(1+$C$2)E. =B4+B4*C2

Page 130: © 2011 REACH All Rights Reserved.Fall 2011. Mathematical Functions ROUND SUMIF Statistical Functions AVERAGEIF COUNTIF LARGE SMALL Lookup Functions HLOOKUP

PRACTICE