Skip to main content
Version: Streamsheets 3.0

LEFT

Excerpts a given number of characters from the left side of a string.

Syntax

=LEFT(Text, [NumChars])

Arguments

NameTypeDescription
TextStringText to excerpt string from.
NumChars (optional)NumberNumber, which specifies the amount of characters to return.

Default value: 1

Return

TypeDescription
StringExtracted characters from the beginning of specified Text.

Examples

FormulaResultComment
=LEFT("SampleText", 3)
"Sam"
=LEFT("Down")
"D"