Excel Features and Functions Flashcards

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/35

flashcard set

Earn XP

Description and Tags

Vocabulary flashcards covering core Excel features, functions, procedures, shortcuts, and spreadsheet concepts from the lecture notes.

Last updated 4:36 AM on 9/2/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

36 Terms

1
New cards

Operator precedence

The standard hierarchy for calculations in Excel: operations within parentheses first, followed left to right with * and // before ++ and -\text{}.

2
New cards

Strategy for developing a long formula

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

3
New cards

Function SMALL (range, k)

A function that returns the k-th smallest value in a range, such as SMALL(range, 1)\text{SMALL(range, 1)} for the single smallest value.

4
New cards

Function LARGE (range, k)

A function that returns the k-th largest value in a range.

5
New cards

Function COUNT (range)

A function that counts nonblank entries in a range.

6
New cards

Procedure to replace blank cells with a value and color fill

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

7
New cards

Procedure to insert column to left

Highlight column, right-click, and select [Insert].

8
New cards

Procedure to rearrange columns

Click column header to move. In Home tab, [Clipboard], right-click column header to move -> Cut. Click column header to right of target location, right-click and select [Insert Cut Cells].

9
New cards

Rescale values

Multiply original values by a multiplier (whole number or fraction), e.g., to scale 5 to 10 multiply by 22, or for 15 to 10 multiply by 23\frac{2}{3}.

10
New cards

Formula to average a range omitting smallest value

The formula written as =(SUM(range)SMALL(range, 1))/(COUNT(range)1)=(\text{SUM(range)}-\text{SMALL(range, 1)})/(\text{COUNT(range)}-1).

11
New cards

Relative reference

A standard cell reference such as A8 that adjusts relative to the destination cell when copied.

12
New cards

Absolute column reference only

A cell reference formatted as $A8\text{\$A8} where only the column reference remains fixed.

13
New cards

Absolute row reference only

A cell reference formatted as A$8\text{A\$8} where only the row reference remains fixed.

14
New cards

Absolute column & row reference

A cell reference formatted as $A$8\text{\$A\$8} where both the column and row references remain fixed.

15
New cards

Cell reference cycle shortcut

Pressing [F4] to cycle through relative and absolute cell reference choices.

16
New cards

Display format Cells shortcut

The keystroke shortcut [Ctrl]1.

17
New cards

Hardcoding

Typing values directly into formulas rather than using references to cells containing parameters, which is a sure way to make errors.

18
New cards

Parameters

Values that can vary over time, such as interest rates and weights.

19
New cards

Parameterization

Using formula references to parameter values rather than typing static values directly.

20
New cards

Built-in functions

Predefined functions in Excel such as average, minimum, maximum, count, small, and IF.

21
New cards

Excel IF function / Access IIF function

Structured as IF(logicalTest, [valueIfTrue], [valueIfFalse])\text{IF(logicalTest, [valueIfTrue], [valueIfFalse])}, returning [valueIfTrue] when logicalTest is TRUE and [valueIfFalse] when FALSE.

22
New cards

Nested IFs and IIFs

Functions where [valueIfTrue] and [valueIfFalse] arguments are themselves IF/IIF functions (allowing up to 6464 nested levels in Excel and unlimited in Access).

23
New cards

VLOOKUP Function

Structured as VLOOKUP(lookupValue, tableArray, ColIndexNum, rangeLookup)\text{VLOOKUP(lookupValue, tableArray, ColIndexNum, rangeLookup)}, where rangeLookup = FALSE\text{rangeLookup = FALSE} yields exact matches and rangeLookup = TRUE\text{rangeLookup = TRUE} (or omitted) yields approximate matches.

24
New cards

VLOOKUP table format

The format required for [tableArray] where the first column contains values sorted ascending for looking up, and subsequent columns contain values to extract.

25
New cards

Procedure to change column width

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

26
New cards

Blanks in Excel calculations

Excel ignores blank cells in calculations and formulas unless a function specifically treats them otherwise, though variants of the COUNT*\text{COUNT*} function will identify blank cells.

27
New cards

Macro

A saved sequence of keystrokes for later execution to enable users to reduce time needed to perform repetitive tasks.

28
New cards

Procedure to create a macro

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


29
New cards

Procedure to execute macro

Press [CTRL] [SHIFT] plus the assigned uppercase letter.

30
New cards

Procedure to sort data

  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.


31
New cards

Procedure to create a pivot table

  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\sum \text{Values} 5. Select Value Field Settings for each field 6. Format columns as needed.


32
New cards

Function CONCATENATE

Puts cell contents together using comma-separated arguments, as in CONCATENATE(arguments)\text{CONCATENATE(arguments)}.

33
New cards

Circular reference

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

34
New cards

Functions MIN(range) and MAX(range)

Functions where MIN(range)\text{MIN(range)} returns the minimum value and MAX(range)\text{MAX(range)} returns the maximum value in a specified range.

35
New cards

DATEDIF function

An undocumented Excel function formatted as DATEDIF(start_date, end_date, units)\text{DATEDIF(start\_date, end\_date, units)} that returns the number of time units ('m' for months, 'd' for days) between two dates.

36
New cards

Function DAYS

A function introduced in Excel 2013 formatted as DAYS(end_date, start_date)\text{DAYS(end\_date, start\_date)} that returns the number of days between two dates, with argument order reversed from DATEDIF.