Beginner Flashcards

1
Q

MINUS(Date 1, Date 2)

A

Function which returns the difference between 2 dates. Output can be negative OR positive.

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

DATEDIF(Date 1, Date2, “D” or “M”)

A

Function which returns the # of whole days (“D”) or months (“M”) between 2 dates. (Note: Date 1 < Date 2)

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

NETWORKDAYS(Date 1, Date 2)

A

Function which returns the # of working days between 2 dates.

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

WEEKDAY(Date, Type)

A

Function which returns the day of the week as a number depending on ‘Type’ parameter.

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

What are the 3 Types in WEEKDAY(Date, Type)?

A

Type 1: Starts from Sunday = 1
Type 2: Starts from Monday = 1
Type 3: Starts from Monday = 0

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

TEXT(Date, “ddd” or “mmm”)

A

Function which returns the day of the week or the month of the year as 3 letters.

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

Difference between “mmm”, “mmmm”, “mmmmm”?

A

“mmm” = 3 letters
“mmmm” = entire word
“mmmmm” = 1st letter
(Note: “ddddd” = “dddd”)

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

What is a range?

A

A collection of cells.

Defined by the upper left cell and lower right cell, separated by a colon.

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

What is a named range? Why is it useful?

A

A range that has a name assigned to it. You can use that name in place of normal cell references.
They make formulas easier to understand (and debug), simplify complicated spreadsheets, and simplify macros.

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

What is a protected range?

A

A range that can only be edited by some users.

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

What is Data Validation?

A

Feature used to control what a user can enter into a cell.

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

How to highlight duplicate entries in a column?

A

Use conditional formatting:

  1. Select column (A) > Conditional Formatting
  2. Select Custom Formula from drop-down list
  3. Enter =countif(A:A, A1) > 1
  4. Edit formatting styles
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

How can you see all conditional formatting rules on your spreadsheet?

A

Select entire spreadsheet, command+A, or shift+command+space.

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

SPARKLINE(Range)

A

Function which lets you see the trend of a range of numbers as a mini-chart in a cell.

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

How to freeze header row?

A

View > Freeze > Choose # of rows/columns
OR
Drag the grey line at the top left corner

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

MAX(Range)

A

Function which returns the maximum value from a range.

17
Q

MIN(Range)

A

Function which returns the minimum value from a range.

18
Q

SMALL(Range, n)

A

Function which returns the nth smallest number from a range.

19
Q

LARGE(Range, n)

A

Function which returns the nth largest number from a range.

20
Q

COUNTIF(Range, criterion)

A

Function which returns the conditional count from a range, depending on criterion (ex: “>20”).

21
Q

IF statements

A

IF(logical_expression, do_this_if_True, do_this_if_False).

Note: do_this_if_False is optional

22
Q

SUM(Range)

A

Function which returns the sum of a range.

23
Q

Relative Reference

A

A cell without the $ sign before the row and column coordinates. When a formula with relative cell references are copied to another cell, the reference changes based on a relative position of rows and columns.

24
Q

Absolute Reference

A

A cell with $ sign before the row and column coordinates. When a formula with absolute cell references are copied to another cell, the reference does not change.

25
Q

How to toggle Absolute/Relative References?

26
Q

Difference between Equal Rank and Average Rank?

A

Equal rank (RANK.EQ) returns the top rank of a value in a given range, while Average rank (RANK.AVG) returns the average rank.

27
Q

AND Operator

A

AND(logical_exp_1, logical_exp_2, logical_exp_3, …)

The function will return TRUE if all expressions are true. It will return FALSE otherwise.

28
Q

What does AND(0, 1, 2) return?

A

FALSE. Google Sheets treats 0 as false.

29
Q

How to create a simple chart?

A
  1. Select your columns (can include headers).
  2. Insert > Chart
  3. Edit Chart (type, add series, title, axis, etc.)
30
Q

How to add a trendline on a chart?

A

Chart Editor > Customize > Series > Trendline

31
Q

FILTER(Range, Condition 1)

A

Function which returns all the values in a range which follow a certain condition.

32
Q
  1. How to return all the dates in August from a group of dates?
  2. How to return the # of student absences for each of those days in August?
A
  1. =FILTER(Dates, MONTH(Dates) = 8)

2. =FILTER(Absences, MONTH(Dates) = 8)

33
Q

What does filtering do?

A

Filtering refers to displaying only rows or values that meet a specific criteria.

34
Q

How to use filters?

A

Select the range you want to filter and then click filter icon from toolbar.
You can have different filter conditions for different columns.

35
Q

3 Filter Functionalities

A
  1. Filter Feature: Any user can modify these features.
  2. Filter View: Each user can have their own filter views.
  3. Filter Functions: Filtering using functions such as FILTER, SORT, etc.