Flashcards for Excel

1
Q

Operator precedence

A

Within parentheses first; left to right with * and / before + and -

2016: 210-211. 2019: 209-210

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Strategy for developing a long formula

A

Create a piece at a time, verifying results of each piece before proceeding

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Function SMALL (range, k)

Function LARGE (range, k)

A

Smallest value in a range: SMALL (range, 1)

2016: 414-415. 2019: 417-418

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Function COUNT (range)

A

Count nonblank entries in a range

2016: 302. 2019: 250-251

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Replace blank cells with a value and color fill

A

[Find&Select] -> [GoToSpecial] -> [Blanks] -> select color -> enter value -> [Ctrl][Enter]

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Insert column to left

A

Highlight column, right-click -> [Insert]

2016 & 2019: 66-67

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Rearrange columns

A

Click column header of column to move. In Home tab, [Clipboard], right-click column header of column to move to, right-click the column header of column to move -> Cut. Click column header to right of where column is to go. Right-click and select [Insert Cut Cells] from shortcut menu

2016: 751. 2019: 751

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Rescale values, e.g., from 5 to 10 or from 15 to 10

A

Multiply original by the multiplier (whole number or fraction), e.g., for 5 to 10, multiply by 2, for 15 to 10, multiply by 2/3

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Average a range omitting smallest value

A

=(SUM(range)-SMALL(range,1))/ (COUNT(range)-1)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Absolute and relative references

A

Relative reference: A8
Absolute column only: $A8
Absolute row only: A$
Absolute column & row: $A$8
Press [F4] to cycle choices

2016: 222-225. 2019: 221-223

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Copy/propagate formula to bottom of range

A

Highlight formula cell(s) and move cursor to lower right corner. When cursor changes to a bold +, double-left click.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Shortcut: Display format Cells

A

[Ctrl]1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Hardcoding (sure way to make errors!)

A

Typing values rather than using references to cells containing parameters

2016 & 2019: 241, 824-825

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Parameters

A

Values that can vary over time, i.e., interest rates, weights. Using formula references to these values is parameterization.

2016 & 2019: 824-825

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Built-in functions

A

Examples: average, minimum, maximum, count, small, IF

2016 & 2019: 212-214, 219-221, 1033-1051

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Excel: IF function

Access: IIF function

A

IF(logicalTest, [valueIfTrue], [valueIfFalse])

When logicalTest returns a value of TRUE, [valueIfTrue] goes in the cell. When logicalTest returns a value of FALSE, [valueIfFalse] goes in the cell.

2016: 329. 2019: 295-296

17
Q

Nested IFs and IIFs

A

In an IF/IIF function, [valueIfTrue] and [valueIfFalse] arguments can be IF/IIF functions (64 nested levels for Excel; unlimited for Access)

18
Q

VLOOKUP Function

A

VLOOKUP(lookupValue, tableArray, ColIndexNum, rangeLookup)
rangeLookup = FALSE for exact match
rangeLookup = TRUE or omitted for approximate match

Excel 2016: 330-332. Excel 2019: 316-318, 323-324

19
Q

VLOOKUP table format for [tableArray] argument

A

First column: Values sorted ascending for looking up
Columns after first: Values to extract

20
Q

Change column width

A

Place and hold cursor on right border of column header and drag border to desired column width.

21
Q

Blanks ignored in calculations

A

Excel ignores blank cells, in calculations and in formulas unless a function specifically treats them otherwise. Variants of the COUNT* function will identify blank cells.

Excel 2016: 297-303. 2019: 250-251

22
Q

Macro

A

Saved sequence of keystrokes for later execution to enable users to reduce time to perform repetitive tasks.

Excel 2016: 907-927. 2019: 924-935

23
Q

Create macro

A
  1. Practice keystrokes
  2. Enable Developer tab: FILE tab -> Customize Ribbon, check DEVELOPER
  3. In DEVELOPER tab -> Record Macro
  4. Name macro (no spaces
  5. Enter shortcut key (uppercase letter) -> OK
  6. Enter keystrokes for macro
  7. In DEVELOPER tab -> Stop Recording
24
Q

Execute macro

A

[CTRL] [SHIFT] letter

25
Q

Minimize and debug worksheet errors

A

Excel 2016: 232-234, 701-729. 2019: 423-442

26
Q

Sort data

A
  1. Highlight data range with headers
  2. DATA tab -> Sort -> check “My data has
    headers”
  3. Set Column pulldown menu to first sort field
  4. For within level sorting, -> Add Level and
    select field
  5. Reset sort order if needed
27
Q

Importing and cleaning data

A

Excel 2016: 733-762. 2019: 587-598

28
Q

Create pivot table

A
  1. Highlight data range including headings
  2. INSERT tab -> PivotTable -> OK
  3. In PivotTable Fields, select field for Row
    Labels
  4. Drag fields to ∑ Values
  5. For each ∑ Values field, pull down menu and
    select from Value Field Settings
  6. Format columns as needed

Excel 2016: 763-821. 2019: 655-677

29
Q

Function CONCATENATE

A

Put cell contents together:
CONCATENATE (comma-separated arguments)

Excel 2016: 248-249. 2019: 189, 208, 210, 225

30
Q

Circular reference

A

A cell referencing itself directly or indirectly through a sequence of formulas, creating a logic error

Excel 2016: 233-234. 2019: 230-231.

31
Q

Functions MIN(range) and MAX(range)

A

MIN (MAX) returns the minimum (maximum) value in the range

32
Q

DATEDIF

A

DATEDIF(start_date, end_date, units) returns the number of time units between start_date and end_date where units can be “m” for months and “d” for days. Although the function is no longer documented, it still works in Excel.

33
Q

Function DAYS

A

DAYS(end¬_date, start_date) returns the number of days between two dates, introduced in Excel 2013. Note that the order of the arguments is reversed from the convention for DATEDIF.