Posts

Showing posts from February, 2024

Text Formulas

  CONCATENATE : Syntax: =CONCATENATE(text1, text2, ...) Example: =CONCATENATE(A1, " ", B1) Combines multiple text strings into one. LEN (Length) : Syntax: =LEN(text) Example: =LEN(A1) Returns the number of characters in a text string. LEFT : Syntax: =LEFT(text, num_chars) Example: =LEFT(A1, 3) Returns a specified number of characters from the beginning of a text string. RIGHT : Syntax: =RIGHT(text, num_chars) Example: =RIGHT(A1, 3) Returns a specified number of characters from the end of a text string. MID : Syntax: =MID(text, start_num, num_chars) Example: =MID(A1, 2, 3) Returns a specific number of characters from a text string, starting at the specified position. LOWER : Syntax: =LOWER(text) Example: =LOWER(A1) Converts text to lowercase. UPPER : Syntax: =UPPER(text) Example: =UPPER(A1) Converts text to uppercase. PROPER : Syntax: =PROPER(text) Example: =PROPER(A1) Capitalizes the first letter of each word in a text string. TRIM : Syntax: =TRIM(text) Example: =TRIM(A1) Rem...