Returns a certain numbers of characters within a string, counting from the left
LEFT( text, number of characters )
text
number of characters
Returns a substring of the given text, counting a given number of characters from the left.
Input
Description
Starting string
Number of characters to return
Outputs substring of text
LEFT( "Missoula", 2) >> "Mi"
Last updated 3 years ago
Was this helpful?