LEFT function
Description
Left portion of string function. LEFT(str,n) returns the first n characters of str. If n equals 0, then the LEFT function returns an empty string. If n is equal to or more than the length of the string str, the function returns the complete string.
Example
LEFT("Position",3) returns "Pos"
Calculator