Google Sheets Flashcards

1
Q

How to make cells auto resize to content?

A

Drag curser to the cell border and double click

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

How do you see edit history for a specific cell

A

right tab on a cell and click, “view edit history”

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

How do you change the color of a checkbox?

A

Change the font color

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

How to swap out rows and columns?

A

Copy section you want to transpose. Right click and find, “paste transposed”

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

What are the three different types of counts that google sheets does?

A

=count will count all numerical values in cells
=counta will count all cells with anything in them, they don’t need to be numerical.
=countunique - will only count unique things so if you had Karah Jones twice it would only count it as 1

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

is it possible to show your formula on the cell and not be hidden?

A

yes, click = then type “formulatext” and click the cell that you want to show

You can also click View > Show formulas

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

Absolute reference vs relative reference

A

click f4 once to get absolute referencing with a dollar sign in from of like this $1$3.

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

copy and paste if you don’t need it duplicated?

A

use cut Ctrl + X and then ctrl + v

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

What does f4 do?

A

It auto adds the $ to keep absolute vs relative referencing
AND
it copies the last action you did

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

How to remove duplicates?

A

Data > Data Cleanup > remove duplicates

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

3 types of functions

A
  1. Functions that return ONE value like SUM, COUNT
  2. Functions that return multiple values like UNIQUE, SORT
  3. Volatile functions like TODAY, NOW, RAND, RANDBETWEEN
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

How do you find a very specific number using the sumifs feature?

A

=SUMIFS($D$5:$D$46,$B$5:$B$46,P4,C5:C46,P5)

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

How do you use the & feature in google sheets to make a formula show >60,000 but you want it reference a cell and not have to type out 60,000 so that it is dynamic?

A

Use the “>”&t4

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

How do you combine the data from 2 cells into 1 cell?

A

=”a1”&”a2”
or =”+1 “&”a2”

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

What are logical functions used for?

A

Can tell you true of false for a given data set.
Examples: You want to see if all of the numbers in a column are >100
=(A1:A99>100)
The function will pop out TRUE

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

What logical text are there for info?

A

Function

17
Q

When would you use the IF function on google sheets?

A

If you want a certain text in a cell if it matches what you want.

18
Q

When would you use the IF and AND function together?

A

If you have 2 things you want to see if it is true and you want specific text in the cell.

19
Q

What is the formula for percent change?

A

=current number divided by previous number -1
=B5/C5-1