Skip to main content

GetColumnsCount

Returns a number of columns in the current range.

Syntax

expression.GetColumnsCount();

expression - A variable that represents a ApiRange class.

Parameters

This method doesn't have any parameters.

Returns

number

Example

Get a count of columns in the specified range in a spreadsheet.

// How to get a count of columns in the range in a spreadsheet.

// Get a count of columns in the range and display it in another cell.

let worksheet = Api.GetActiveSheet();
let range = worksheet.GetRange("A1:E2");
range.SetValue("I was selected");
worksheet.GetRange("A3").SetValue("Columns count in the selected range should be 5: " + range.GetColumnsCount());