Chapter 2 Database Analytics

0.0(0)
studied byStudied by 0 people
0.0(0)
full-widthCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/17

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

18 Terms

1
New cards

Data set

a collection of data

  • ex: marketing surgery responses, a table of historical stock prices, and a collection of measurements of dimensions of a manufactured item

2
New cards

Database

a collection of related files containing records on people, places, or things

  • A database file is usually organized in a two-dimensional table, where the columns correspond to each individual element of data (called fields, or attributes), and the rows represent records of related data elements

3
New cards

Excel table

allows you to use table references to perform basic calculations. Select the data range including headers.

  • The table name (default: Table1), can be found (can changed) in the Properties group of the Table Tools Design tab in Windows or in the Table tab on a Mac. 

4
New cards

Filtering

is finding a subset of records that meet certain characteristics

  • AutoFilter for simple criteria

  • Advanced Filter for more complex criteria.

The filter tool does not extract the records; it simply hides the records that don’t match the criteria. 

5
New cards

Database functions

start with a “D” (ex: DSUM, DAVERAGE, DCOUNT) and allow you to specify criteria that limit the calculations to a subset of records using the same format as the Advanced Filter.

6
New cards

IF function

=IF(condition, value if true, value if false)

returns one value if the condition is true and another if the condition is false.

Conditions may include the following:

  • = equal

  • > greater than

  • < less than

  • <> not equal to

  • >= greater than or equal to

  • <= less than or equal to

7
New cards

AND function

=AND(condition1, conditioin2,…)

returns TRUE if all conditions are true and FALSE if not

8
New cards

OR function

=OR(condition1, condition2,…)

returns TRUE if any condition is true and FALSE if not.

9
New cards

Nesting IF functions

=IF(A8= 2, (IF(B3= 5, “YES”, ““)), 15)

10
New cards

VLOOKUP

=VLOOKUP(lookup_value, table_array, col_index_num, [range lookup])

looks up a value in the leftmost column of a table and returns a value in the same row from a column you specify

11
New cards

HLOOKUP

=HLOOKUP(lookup_value, table_array, row_index_num, [range lookup])

looks up a value in the top row of a table and returns a value in the same column from a row you specify

12
New cards

INDEX

=INDEX(array, row_num, col_num)

returns a value or reference of the cell at the intersection of a particular row and column in a given range.

13
New cards

MATCH

=MATCH(lookup_value, lookup_array, match_type)

returns the relative position of an item in an array that matches a specified value in a specified order.

14
New cards

Form Controls

buttons, boxes, and other mechanisms for inputting or changing data on spreadsheets easily that can be used to design user-friendly spreadsheets.

  • Spin button: a button used to increase or decrease a numerical value

  • Scroll bar: a slider used to change a numerical value

  • Check box: a box used to select or deselect a scenario

  • Option button: a radio button used to select an option

  • List box: a box that provides a list of options

  • Combo box: a box that provides an expandable list of options

  • Group box: a box that can hold a group of controls

15
New cards

CHOOSE

=CHOOSE(index_num, value1. value2,…)

returns a value from a list based on the position in the list, specified by index_num.

16
New cards

Important notes on Lookup functions

  • In the VLOOKUP and HLOOKUP functions, range lookup is optional. If this is omitted or set as True, then the first column of he table must be sorted in ascending numerical order.

  • If an exact match for the lookup_value is found in the first column, then Excel will return the value of col_index_num of that row. If an exact match is not found, Excel will choose the row with the largest value in the first column that is less than the lookup_value

  • If range lookup is False, then Excel seeks an exact match in the first column of the table range. If no exact match is found, Excel will return #N/A (not available).

    • Specify the range lookup to avoid errors!

17
New cards

PivotTables

allows you to create custom summaries and charts of key information in the data. Can be used to quickly create cross-tabulations and to drill down into a large set of data in numerous ways

18
New cards

Slicers

are tools for drilling down to “slice” a PivotTable and display a subset of data.