CHAR
Returns the character specified by a number. Char values follow the ASCII value mapping. For more information, refer to the Google Sheets documentation.CONCAT
Concatenates (combines) any number of strings into a single string. For more information, refer to the Google Sheets documentation.CONCATENATE
Concatenates (combines) any number of strings into a single string. Alias forCONCAT.
For more information, refer to the Google Sheets documentation.
CLEAN
Returns text with the non-printable ASCII characters removed. Unicode characters that aren’t in ASCII are not removed. For more information, refer to the Google Sheets documentation.EXACT
Tests whether two text strings are exactly the same. ReturnsTRUE if the strings match, FALSE otherwise. This function is case-sensitive.
For more information, refer to the Google Sheets documentation.
FIND
Returns the position of one string inside another. For more information, refer to the Google Sheets documentation.FIND does not accept a third argument for start number/index.
LEFT
Returns the specified number of characters from the start of a text string. For more information, refer to the Google Sheets documentation.LEN
Returns the length (number of characters) of a string. For more information, refer to the Google Sheets documentation.LOWER
Converts text to lowercase. For more information, refer to the Google Sheets documentation.MID
Returns a specific number of characters from a text string starting at the specified position. For more information, refer to the Google Sheets documentation.PROPER
Capitalizes the first letter of each word in a text string. For more information, refer to the Google Sheets documentation.REPLACE
Replaces characters in a string with new text. For more information, refer to the Google Sheets documentation.RIGHT
Returns the specified number of characters from the end of a text string. For more information, refer to the Google Sheets documentation.SEARCH
Finds one text value within another, ignoring case. For more information, refer to the Google Sheets documentation.SEARCH does not accept a third argument for start number/index.
SUBSTITUTE
Substitutes new text for old text in a string. For more information, refer to the Google Sheets documentation.SUBSTITUTE does not accept a fourth argument for instance_num.