Excel Shortcuts and Formulas

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/50

flashcard set

Earn XP

Description and Tags

flashcards to help remember basic keyboard shortcuts and functions for Microsoft Excel

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

51 Terms

1
New cards

CTRL+SHIFT+4

format a number as currency

2
New cards

CTRL+SHIFT+5

format a number as a percentage

3
New cards

CTRL+SHIFT+1

format a number with two decimal places

4
New cards

SHIFT+ARROW KEY

select multiple cells

5
New cards

CTRL + ARROW KEY

jump to last non-empty cell

6
New cards

CTRL + SHIFT + ARROW KEY

select all non-empty cells in the direction of the arrow key

7
New cards

=COUNT(startcell:endcell)

count all the cells that contain numbers in a specified range

8
New cards

=IF(condition, value_if_true, value_if_false)

formatting for an IF statement

9
New cards

?

replaces a single character in a text search to allow results with any character in that position

10
New cards

*

replaces any number of characters in text search to allow results with anything in the position that the character marks

11
New cards

=SUMIF(cell1:cell2, “condition”, additional_range(s))

calculates the sum of cells within the specified range that meet the condition; if an additional range is added, then the cells for this range that correspond to the cells in the first range that meet the specified condition are the ones that get summed

12
New cards

=SUMIFS(range1, range2, condition)

allows multiple conditions to be added to the sum function with the first range being the cells to be summed

13
New cards

XOR

returns true if only one of its arguments is true

14
New cards

ISBLANK

returns true or false for whether a cell or range of cells is blank

15
New cards

ISEVEN

returns true or false for whether the value of a cell is an even number

16
New cards

ISTEXT

returns true or false for whether the value of a cell is text data

17
New cards

ISNUMBER

returns true or false for whether the contents of a cell is numerical data

18
New cards

IFS

allows testing for multiple criteria and returns the value associated with the first condition to register as true, similar to an if-elseif loop

19
New cards

SWITCH(CELL, VALUE1A, VALUE1B, VALUE2A, VALUE2B, … DEFAULT)

searches a list of A values for the one contained in a specified cell and returns the corresponding B value, or the default value if the cell’s value is not in the list

20
New cards

SHIFT+SPACE

selects an entire row

21
New cards

CTRL+SPACE

selects an entire column

22
New cards

CTRL+A

creates a selection marquee rectangle around all contiguous filled cells

23
New cards

CTRL+SHIFT++

inserts a column to the left of a selected column or a row above a selected row

24
New cards

CTRL+-

deletes a selected column or row

25
New cards

CTRL+ARROW KEY

jumps to last occupied cell in the specified direction

26
New cards

VLOOKUP(match_value, search:area, # of columns to right, 0/1 (false/true for approximate matching)

search a vertical list and find a corresponding value in another column

27
New cards

=HLOOKUP(“search value”, range, # of rows from position, t/f)

function to search a horizontal list and return the value from a corresponding row

28
New cards

=XLOOKUP(“search value”, lookup range, return range)

a lookup function that allows searches in columns or rows on either side of the lookup value

29
New cards

=LEN(cell)

returns number of characters in a cell

30
New cards

=LEFT(cell, #)

returns a specified number of leftmost characters in a cell

31
New cards

=RIGHT(cell, #)

returns a specified number of rightmost characters in a cell

32
New cards

=MID(cell, position, #)

returns a specified number of characters starting at a specified position within a cell

33
New cards

=FIND(“string”, cell, position (opt))

returns the first position in a string at which the specified substring begins, with the option of specifying a position within the larger string at which to begin searching. Is case-sensitive and does not accept wildcard arguments.

34
New cards

=SEARCH(“string”, cell, position)

returns the first position in a string at which the specified substring begins, with the option of specifying a position within the larger string at which to begin searching. Is not case-sensitive and accepts wildcard characters.

35
New cards

ALT+H

shortcut to “Home” tab

36
New cards

ALT+N

shortcut to Insert tab

37
New cards

ALT+P

shortcut to Page Layout tab

38
New cards

ALT+M

shortcut to Formulas tab

39
New cards

ALT+A

shortcut to Data tab

40
New cards

ALT+R

shortcut to Review tab

41
New cards

ALT+W

shortcut to View tab

42
New cards

ALT+A+T

shortcut to filter a list

43
New cards

ALT+A+S+A

sorts a list in ascending order

44
New cards

ALT+A+M

removes duplicates from a list

45
New cards

=LARGE()

returns the nth largest number from a list where n is the second argument

46
New cards

=SMALL()

returns the nth smallest value from a list where n is the second argument

47
New cards

=FLOOR()

rounds a number (first argument) towards zero (down for positive, up for negative) to the nearest multiple of the second argument

48
New cards

=CEILING()

rounds a number (first argument) away from zero (up for positive, down for negative) to the nearest multiple of the second argument

49
New cards

=DATE()

takes three number arguments and returns them in date format

50
New cards

=DATEDIF()

returns the difference between two dates in days, months, or years, depending on the final argument

51
New cards

=DAYS()

returns the number of days between two dates