Convert your text instructions into Excel formulas, or get explanations for existing formulas.
Convert your text instructions into formulas or input a formula to have it explained.
Edit Excel online by chatting with AI
Convert your text instructions into SQL queries - powered by AI.
Generate Excel VBA (Visual Basic for Applications) code to automate tasks and create custom solutions within Microsoft Excel.
Upload your Excel file and generate beautiful charts with our AI-powered chart generator.
Convert your text into beautiful mind maps with our AI-powered mind map generator. Edit and customize your mind maps easily.
The LEFT function in Excel is used to extract a specified number of characters from the beginning (left side) of a text string. The syntax is:
=LEFT(text, [num_chars])
Example 1: Extract the first 3 characters from the text “Hello World”:
=LEFT("Hello World", 3)
Result: “Hel”
Example 2: Extract the first character from the text “Excel”:
=LEFT("Excel")
Result: “E”
Notes:
num_chars
is greater than the length of the
text, the entire text is returned.
num_chars
is zero or negative, an empty
string is returned.