Left

Returns a leftmost substring of a string value

Left("Central region", 7) β†’ "Central"
Left("New York City", 8) β†’ "New York"

Inputs

Left(string, length)

  • string - A text value

  • length - Length of the resulting text

Last updated