Skip to main content

LEFT

Returns the specified number of characters from the start of a text string.

Syntax

expression.LEFT(arg1, arg2);

expression - A variable that represents a ApiWorksheetFunction class.

Parameters

NameRequired/OptionalData typeDefaultDescription
arg1RequiredApiRange | ApiName | stringThe text string containing the characters to extract.
arg2OptionalApiRange | ApiName | numberA number of the substring characters. It must be greater than or equal to 0.

Returns

string

Example

Extract characters from the beginning of text in a spreadsheet.

// How do I get the first few letters or a prefix from a text string in a spreadsheet?

// Retrieve a specific number of characters counting from the left side of text in a spreadsheet.

let worksheet = Api.GetActiveSheet();
let func = Api.WorksheetFunction;
worksheet.GetRange("A1").SetValue(func.LEFT("Online Office", 6));