top of page
Search


MS Excel: VALUE function to convert text to numbers
The VALUE function in Excel converts text representations of numbers into actual numeric values. This function is especially helpful when numbers are stored as text and you need to perform mathematical operations on them—like sums, averages, or comparisons.

Fakhriddinbek
3 days ago2 min read


MS Excel: UPPER function to convert text to uppercase
The UPPER function in Excel is used to convert any text string into uppercase letters. It is especially useful when you need to standardize text formats across your data—such as customer names, product codes, or locations—so that everything appears in a consistent, capitalized style.

Fakhriddinbek
3 days ago1 min read


MS Excel: UNICODE function to get unicode of any character
The UNICODE function in Excel returns the numeric Unicode code point of the first character in a text string. It’s the counterpart of the UNICHAR function, which does the reverse (i.e., returns a character based on a Unicode number).

Fakhriddinbek
3 days ago2 min read


MS Excel: UNICHAR function to return unicode character
The UNICHAR function in Excel returns the Unicode character referenced by a given numeric code point. It is the modern equivalent of the CHAR function, but unlike CHAR, which is limited to ANSI (ASCII) characters (0–255), UNICHAR supports the full range of Unicode characters.

Fakhriddinbek
3 days ago2 min read


MS Excel: TRIM function to remove extra spaces from text string
The TRIM function in Excel is used to remove all extra spaces from a text string, leaving only single spaces between words. This is especially useful when cleaning up imported or manually entered data that may contain:
Irregular spacing
Leading or trailing spaces
Multiple spaces between words

Fakhriddinbek
3 days ago2 min read


MS Excel: TEXTJOIN function to combine text
The TEXTJOIN function is one of Excel’s modern text functions introduced in Excel 2016. It allows you to combine (join) multiple text strings using a specified delimiter, such as a comma, space, dash, or line break. It's especially powerful because it lets you ignore blank cells, making it cleaner and more efficient than older methods like CONCATENATE or &.

Fakhriddinbek
3 days ago2 min read


MS Excel: TEXT function for text formatting
The TEXT function in Excel allows you to convert numbers, dates, and times into formatted text. It’s essential when you want to display numeric values in a specific format—like currency, percentages, or custom date formats—while retaining flexibility in combining data with other strings.

Fakhriddinbek
3 days ago2 min read


MS Excel: T function to handle texts
The T function in Excel is a text-handling function used to return the text portion of a value. If the input value is text, T returns that text. If the value is not text (like a number, date, or boolean), it returns an empty string ("").

Fakhriddinbek
3 days ago2 min read


MS Excel: SUBSTITUTE function to replace text string
The SUBSTITUTE function in Excel is used to replace existing text with new text in a string, allowing you to target specific occurrences of a substring. Unlike REPLACE, which works based on position, SUBSTITUTE identifies exact text to change—making it ideal for cleaning and restructuring textual data.

Fakhriddinbek
3 days ago2 min read


MS Excel: SEARCH function to find position of a text
The SEARCH function in Excel is used to find the position (as a number) of one text string within another. Unlike the FIND function, SEARCH is not case-sensitive and supports the use of wildcards, making it more flexible for general text searches.

Fakhriddinbek
4 days ago2 min read


MS Excel: REPT function to repeat text string number of times
The REPT function in Excel is used to repeat a text string a specified number of times. This can be particularly useful for data visualization, creating in-cell bar charts, or generating repeated patterns or placeholders in your spreadsheet

Fakhriddinbek
4 days ago2 min read


MS Excel: REPLACE function to replace with new text string
The REPLACE function in Excel is used to substitute a portion of a text string with new text, based on a specific position and number of characters. It is especially useful when you need to correct formatting, update values, or modify identifiers (e.g., phone numbers, codes, or part numbers) within a cell.

Fakhriddinbek
4 days ago2 min read


MS Excel: PROPER function to capitalize first letter of each word
The PROPER function in Excel is designed to capitalize the first letter of each word in a text string while converting all other letters to lowercase. It’s often used to standardize names, titles, addresses, or any other textual data that needs to follow title case formatting.

Fakhriddinbek
4 days ago2 min read


MS Excel: NUMBERVALUE function for conversion to actual numeric values
The NUMBERVALUE function in Excel is used to convert text representations of numbers into actual numeric values, especially when the text uses non-standard decimal or thousands separators. This is extremely helpful when working with data imported from CSV files, foreign locales, or web scraping, where formatting may vary.

Fakhriddinbek
4 days ago2 min read


MS Excel: LOWER function for converting uppercase text to lowercase
The LOWER function in Excel is used to convert all uppercase letters in a text string to lowercase. It’s especially useful for standardizing text data, cleaning up user input, or preparing da

Fakhriddinbek
4 days ago2 min read


MS Excel: LET function assigns results names to calculation results
The LET function in Excel allows you to assign names to calculation results or expressions and reuse them within a formula. It enhances performance, readability, and maintainability by avoiding repetition of the same expression.

Fakhriddinbek
4 days ago2 min read


MS Excel: LEN function for calculating number of characters
The LEN function in Excel is used to calculate the number of characters in a given text string, including letters, numbers, symbols, and spaces. It's a simple yet powerful tool used in text analysis, data validation, and cleaning operations.

Fakhriddinbek
4 days ago2 min read


MS Excel: FIXED function to round and format a number as text
The FIXED function in Excel is used to round and format a number as text, with a fixed number of decimal places and optional commas for thousands separators. It’s often used in reporting or exporting financial or statistical data where you want consistent, readable formatting—but don’t want the result treated as a number.

Fakhriddinbek
4 days ago2 min read


MS Excel: FIND function to locate the position of a substring
The FIND function in Excel is used to locate the position of a substring (a piece of text) within another string. It returns the position number of the first character where the substring is found. The function is case-sensitive and does not allow wildcards, making it ideal for precise string matching.

Fakhriddinbek
4 days ago2 min read


MS Excel: EXACT function to compare two text strings
The EXACT function in Excel is used to compare two text strings and determine whether they are exactly the same—including case sensitivity. Unlike the regular equality operator (=), which ignores case, EXACT will only return TRUE if both text strings match exactly in content and case.

Fakhriddinbek
4 days ago2 min read
bottom of page