Text Manipulation Flashcards

1
Q

8

concatenate/joining text

A

Ampersand symbol (&)

  • Select the cell where you want to put the combined data.
  • Type = and select the first cell you want to combine.
  • Type & and use quotation marks with a space enclosed.
  • Select the next cell you want to combine and press enter. An example formula might be =A2&” “&B2.

CONCAT function

  • Select the cell where you want to put the combined data.
  • Type =CONCAT(.
  • Select the cell you want to combine first.
  • Use commas to separate the cells you are combining and use quotation marks to add spaces, commas, or other text.
  • Close the formula with a parenthesis and press Enter. An example formula might be =CONCAT(A2, “ Family”).
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

textbefore function

A

=TEXTBEFORE(text,delimiter,[instance_num], [match_mode], [match_end], [if_not_found])

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

textsplit function

A

TEXTSPLIT(text,col_delimiter,[row_delimiter],[ignore_empty], [match_mode], [pad_with])

text The text you want to split. Required.

col_delimiter The text that marks the point where to spill the text across columns.

row_delimiter The text that marks the point where to spill the text down rows. Optional.

ignore_empty Specify TRUE to ignore consecutive delimiters. Defaults to FALSE, which creates an empty cell. Optional.

match_mode Specify 1 to perform a case-insensitive match. Defaults to 0, which does a case-sensitive match. Optional.

pad_with The value with which to pad the result. The default is #N/A.

same as text to columns wizard

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

9

string functions

A

extract a portion of a cell’s value/text

you can select a certain number of characters in a cell starting from a location (right, left, mid, etc.)

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

5

large function

A

LARGE(array, k)

The LARGE function syntax has the following arguments:

Array Required. The array or range of data for which you want to determine the k-th largest value.

K Required. The position (from the largest) in the array or cell range of data to return.

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