Returns the specified number of characters from the left of the specified text.
Syntax
Copy Code
|
|---|
LEFT( Text text, [Integer length = 1] ) → Text |
If length is negative, the function returns #VALUE!. If length is greater than the number of characters in text, the entire text is returned. If length is not integer, it is automatically truncated.
Formula
Copy Code
|
|---|
=LEFT(A1,LEN(A1)-1) |