Skip to main content
Returns a substring that begins at the start of a given string column values. Category: text Syntax:
Left([string_column], number)
Returns: StringColumn Context Filtering: ✓ Yes

Parameters

NameTypeRequiredDescription
string_columncolumn✓ YesThe string column from which a left substring will be returned.
numbernumber✓ YesThe desired length of the returned substring. A negative number removes characters from the end.
Allowed Column Types: STRING, TEXT

Validation

  • Minimum parameters: 2
  • Maximum parameters: 2

Examples

Left([Address], 5)
Returns first 5 characters of each address.
  • Right - Extract from end of string
  • Upper - Convert extracted text to uppercase
Last modified on March 13, 2026