Spreadsheet Functions Flashcards
Countif = function that returned the number of cells that match a specific value.
=countif(range, “value”)
=countif(A1,A17,”<100”)
<+>
Left arrow means less right arrow means more.
LEN Function if you know a specific length in a column and want to check.
=LEN(range)
One can use conditional format with Len to look for the value.
Left function. Number of characters from the left.
Same as the right Function instead looks at the right.
=LEFT(range, number of characters)
=LEFT(A2,5) the five is the number of characters from the left.
MID function it gives you the segment from the middle.
=MID(range, where the function should start add coma and how many characters one wants)
=MID(D2,4)
Concatenate function function that joins together two or more strings.
=concatenate( item1,item2)
=concatenate( A2,B2)
Trim function it removes leading and trailing repeated spaces.
=Trim( range)
How many functions have I learned?
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.