The LEFT function is used to extract a specific number of characters from the left-hand side (beginning) of a text string.
text → The text string from which you want to extract characters.
num_chars → The number of characters you want to extract from the left.
If cell A1 = "ANILCOMPUTERS"
Formula: =LEFT(A1, 4)
Result: ANIL
This extracts the first 4 characters from the left.
If cell B1 = "Udaipur123"
Formula: =LEFT(B1, 7)
Result: Udaipur
The first 7 characters are displayed.
The RIGHT function is used to extract a specific number of characters from the right-hand side (end) of a text string.
text → The text string from which you want to extract characters.
num_chars → The number of characters you want to extract from the right.
If cell A1 = "ANILCOMPUTERS"
Formula: =RIGHT(A1, 8)
Result: COMPUTERS
? This extracts the last 8 characters from the right.
If cell B1 = "Excel2025"
Formula: =RIGHT(B1, 4)
Result: 2025
? It shows the last 4 characters.
This function extracts characters from the middle of a string.
Example:
| A |
|---|
| Hello |
Result: ell
This function joins the text from multiple cells into one.
Example:
| A | B |
|---|---|
| Hello | World |
Formula: =CONCAT(A1, " ", B1)
Result: Hello World
This function joins multiple ranges and strings using a delimiter.
The first argument is the delimiter (e.g., comma, space).
The second argument is whether to ignore empty cells (TRUE/FALSE).
The third argument is the text range to join.
Example:
| A |
|---|
| AM |
| IT |
| BHA |
| RAT |
| PUR |
Formula: =TEXTJOIN(",", TRUE, A1:A5)
Result: AM, IT, BHA, RAT, PUR
Excel Advanced Formulas Tutorial in hindi blog
Thanks To Google
Thanks To ChatGPT