Spreadsheet Functions Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

Countif = function that returned the number of cells that match a specific value.

A

=countif(range, “value”)

=countif(A1,A17,”<100”)

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

<+>

A

Left arrow means less right arrow means more.

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

LEN Function if you know a specific length in a column and want to check.

A

=LEN(range)

One can use conditional format with Len to look for the value.

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

Left function. Number of characters from the left.

Same as the right Function instead looks at the right.

A

=LEFT(range, number of characters)

=LEFT(A2,5) the five is the number of characters from the left.

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

MID function it gives you the segment from the middle.

A

=MID(range, where the function should start add coma and how many characters one wants)
=MID(D2,4)

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

Concatenate function function that joins together two or more strings.

A

=concatenate( item1,item2)

=concatenate( A2,B2)

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

Trim function it removes leading and trailing repeated spaces.

A

=Trim( range)

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

How many functions have I learned?

A

7
Countif= returns a specific value that match
Len= length counts the number of the text
Left= return the left number of characters.
Right= return the right number of characters.
Mid= return the middle
Concatenate= returns a combination of values.
Trim= it cleans white spaces.

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