**     In Excel, the LEFT function is a text function that allows you to extract a specified number of characters from the beginning (left side) of a text string. Its syntax is as follows:
LEFT(text, num_characters)
text: This is the text string from which you want to extract characters.
num_characters: This is the number of characters you want to extract from the beginning of the text string.
For example, if you have the text "Excel Functions" in cell A1 and you want to extract the first 5 characters, you can use the LEFT function like this:
=LEFT(A1, 5)
This formula will return "Excel" because it extracts the first 5 characters from the left side of the text string.    **
Put Comment for quarry