- UPPER: Converts text to uppercase. Example: =UPPER("text") returns "TEXT".
- LOWER: Converts text to lowercase. Example: =LOWER("TEXT") returns "text".
- PROPER: Capitalizes the first letter of each word. Example: =PROPER("hello world") returns "Hello World".
- LEFT: Extracts a specified number of characters from the start of a text string. Example: =LEFT("Excel", 2) returns "Ex".
- RIGHT: Extracts a specified number of characters from the end of a text string. Example: =RIGHT("Excel", 2) returns "el".
- MID: Extracts a substring starting at a specified position. Example: =MID("Excel", 2, 3) returns "xce".
- LEN: Returns the number of characters in a text string, including spaces. Example: =LEN("Excel") returns 5.
- SEARCH: Finds the position of a text string within another (case-insensitive). Example: =SEARCH("c", "Excel") returns 3.
- FIND: Finds the position of a text string within another (case-sensitive). Example: =FIND("c", "Excel") returns 3.
- SUBSTITUTE: Replaces occurrences of old text with new text. Example: =SUBSTITUTE("Excel", "c", "x") returns "Exxel".
- REPLACE: Replaces part of a text string with another. Example: =REPLACE("Excel", 2, 3, "mpl") returns "Empl".
- CONCAT: Joins multiple text strings into one. Example: =CONCAT(A1, B1) combines the text in A1 and B1.
- TEXTJOIN: Joins text strings with a specified delimiter. Example: =TEXTJOIN(", ", TRUE, A1, B1, A2) joins with commas.
- TRIM: Removes extra spaces from text. Example: =TRIM(" Excel ") returns "Excel".
- CLEAN: Removes non-printable characters from text. Example: =CLEAN("Excel ") returns "Excel".
- EXACT: Checks if two text strings are exactly the same (case-sensitive). Example: =EXACT("Excel", "excel") returns FALSE.
Rabindrik Psychotherapy Research Institute Trust, Registered Under Indian Trust Act, 1882 REGD.NO.150600103.
Wednesday, December 4, 2024
Text mining in MS-Excel
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment