Text Functions Flashcards

1
Q

EXACT(text1,text2)

A

Compares two text strings and returns TRUE if they are exactly the same, otherwise returns FALSE. EXACT is case-sensitive but ignores formatting differences. EXACT is case-sensitive

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

CONCATENATEX(table, expression[, delimiter [, orderBy_expression [, order]]…])

A

Concatenates the result of an expression evaluated for each row in a table.

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

VALUE(text)

A

Converts a text string that represents a number to a number.

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

UPPER (text)

A

Converts a text string to all uppercase letters.

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

FORMAT(value, format_string[, locale_name])

A

Converts a value to text according to the specified format.

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

LOWER(text)

A

Converts all letters in a text string to lowercase.

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

COMBINEVALUES(delimiter, expression, expression[, expression]…)

A

Joins two or more text strings into one text string. The primary purpose of this function is to support multi-column relationships in DirectQuery models. See Remarks for details.

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

CONCATENATE(text1, text2)

A

Joins two text strings into one text string.

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

TRIM(text)

A

Removes all spaces from text except for single spaces between words.

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

REPT(text, num_times)

A

Repeats text a given number of times. Use REPT to fill a cell with a number of instances of a text string.

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

REPLACE(old_text, start_num, num_chars, new_text)

A

REPLACE replaces part of a text string, based on the number of characters you specify, with a different text string.

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

SUBSTITUTE(text, old_text, new_text, instance_num)

A

Replaces existing text with new text in a text string.

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

MID(text, start_num, num_chars)

A

Returns a string of characters from the middle of a text string, given a starting position and length.

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

UNICODE( Text )

A

Returns the number (code point) corresponding to the first character of the text.

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

LEN(text)

A

Returns the number of characters in a text string.

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

SEARCH(find_text, within_text[, [start_num][, NotFoundValue]])

A

Returns the number of the character at which a specific character or text string is first found, reading left to right. Search is case-insensitive and accent sensitive.

17
Q

LEFT(text, num_chars)

A

Returns the specified number of characters from the start of a text string.

18
Q

FIND(find_text, within_text[, [start_num][, NotFoundValue]])

A

Returns the starting position of one text string within another text string. FIND is case-sensitive.

19
Q

UNICHAR(number)

A

Returns the Unicode character referenced by the numeric value.

20
Q

RIGHT(text, num_chars)

A

RIGHT returns the last character or characters in a text string, based on the number of characters you specify.

21
Q

FIXED(number, decimals, no_commas)

A

Rounds a number to the specified number of decimals and returns the result as text. You can specify that the result be returned with or without commas.