Function Flashcards
One of the text functions, to join two or more text strings into one string.
CONCATENATE
Method to join two or more text strings into one string.
Concatena Function, Ampersand (&)
Function that returns the first character or characters in a text string, based on the number of characters you specify.
LEFT
Function that returns the last character or characters in a text string, based on the number of characters you specify.
RIGHT
Function that eturns a specific number of characters from a text string, starting at the position you specify, based on the number of characters you specify.
MID
Removes all spaces from text except for single spaces between words.
TRIM
Converts all uppercase letters in a text string to lowercase.
LOWER
Converts text to uppercase.
UPPER
Capitalizes the first letter in a text string and any other letters in text that follow any character other than a letter. Converts all other letters to lowercase letters.
PROPER
locate one text string within a second text string, and return the number of the starting position of the first text string from the first character of the second text string.
FIND & SEARCH
Difference between FIND & SEARCH
FIND are case sensitive unlike SEARCH
Substitutes new_text for old_text in a text string.
SUBTITUTE
replaces part of a text string, based on the number of characters you specify, with a different text string.
REPLACE