Left()

Returns the leftmost characters from the specified string expression.

Syntax

Left(string expression [source], number of characters)
  • string expression [source]: source string to be searched
  • number of characters: the number of characters to be returned

Example

Left("Well name", 4) returns "Well"

Left("Field 55", 5) returns "Field"