Range Object (JavaScript API for Excel)

Range represents a set of one or more contiguous cells such as a cell, a row, a column, block of cells, etc.

Properties

Property Type Description Req. Set
address string Represents the range reference in A1-style. Address value will contain the Sheet reference (e.g. Sheet1!A1:B4). Read-only. 1.1
addressLocal string Represents range reference for the specified range in the language of the user. Read-only. 1.1
cellCount int Number of cells in the range. This API will return -1 if the cell count exceeds 2^31-1 (2,147,483,647). Read-only. 1.1
columnCount int Represents the total number of columns in the range. Read-only. 1.1
columnHidden bool Represents if all columns of the current range are hidden. 1.2
columnIndex int Represents the column number of the first cell in the range. Zero-indexed. Read-only. 1.1
formulas object[][] Represents the formula in A1-style notation. 1.1
formulasLocal object[][] Represents the formula in A1-style notation, in the user's language and number-formatting locale. For example, the English "=SUM(A1, 1.5)" formula would become "=SUMME(A1; 1,5)" in German. 1.1
formulasR1C1 object[][] Represents the formula in R1C1-style notation. 1.2
hidden bool Represents if all cells of the current range are hidden. Read-only. 1.2
numberFormat object[][] Represents Excel's number format code for the given cell. 1.1
rowCount int Returns the total number of rows in the range. Read-only. 1.1
rowHidden bool Represents if all rows of the current range are hidden. 1.2
rowIndex int Returns the row number of the first cell in the range. Zero-indexed. Read-only. 1.1
text object[][] Text values of the specified range. The Text value will not depend on the cell width. The # sign substitution that happens in Excel UI will not affect the text value returned by the API. Read-only. 1.1
valueTypes string Represents the type of data of each cell. Read-only. Possible values are: Unknown, Empty, String, Integer, Double, Boolean, Error. 1.1
values object[][] Represents the raw values of the specified range. The data returned could be of type string, number, or a boolean. Cell that contain an error will return the error string. 1.1

See property access examples.

Relationships

Relationship Type Description Req. Set
conditionalFormats ConditionalFormatCollection Collection of ConditionalFormats that intersect the range. Read-only. 1.6
format RangeFormat Returns a format object, encapsulating the range's font, fill, borders, alignment, and other properties. Read-only. 1.1
sort RangeSort Represents the range sort of the current range. Read-only. 1.2
worksheet Worksheet The worksheet containing the current range. Read-only. 1.1

Methods

Method Return Type Description Req. Set
calculate() void Calculates a range of cells on a worksheet. 1.6
clear(applyTo: string) void Clear range values, format, fill, border, etc. 1.1
delete(shift: string) void Deletes the cells associated with the range. 1.1
getBoundingRect(anotherRange: Range or string) Range Gets the smallest range object that encompasses the given ranges. For example, the GetBoundingRect of "B2:C5" and "D10:E15" is "B2:E16". 1.1
getCell(row: number, column: number) Range Gets the range object containing the single cell based on row and column numbers. The cell can be outside the bounds of its parent range, so long as it's stays within the worksheet grid. The returned cell is located relative to the top left cell of the range. 1.1
getColumn(column: number) Range Gets a column contained in the range. 1.1
getColumnsAfter(count: number) Range Gets a certain number of columns to the right of the current Range object. 1.1
getColumnsBefore(count: number) Range Gets a certain number of columns to the left of the current Range object. 1.1
getEntireColumn() Range Gets an object that represents the entire column of the range (for example, if the current range represents cells "B4:E11", it's getEntireColumn is a range that represents columns "B:E"). 1.1
getEntireRow() Range Gets an object that represents the entire row of the range (for example, if the current range represents cells "B4:E11", it's GetEntireRow is a range that represents rows "4:11"). 1.1
getIntersection(anotherRange: Range or string) Range Gets the range object that represents the rectangular intersection of the given ranges. 1.1
getIntersectionOrNullObject(anotherRange: Range or string) Range Gets the range object that represents the rectangular intersection of the given ranges. If no intersection is found, will return a null object. 1.4
getLastCell() Range Gets the last cell within the range. For example, the last cell of "B2:D5" is "D5". 1.1
getLastColumn() Range Gets the last column within the range. For example, the last column of "B2:D5" is "D2:D5". 1.1
getLastRow() Range Gets the last row within the range. For example, the last row of "B2:D5" is "B5:D5". 1.1
getOffsetRange(rowOffset: number, columnOffset: number) Range Gets an object which represents a range that's offset from the specified range. The dimension of the returned range will match this range. If the resulting range is forced outside the bounds of the worksheet grid, an error will be thrown. 1.1
getResizedRange(deltaRows: number, deltaColumns: number) Range Gets a Range object similar to the current Range object, but with its bottom-right corner expanded (or contracted) by some number of rows and columns. 1.1
getRow(row: number) Range Gets a row contained in the range. 1.1
getRowsAbove(count: number) Range Gets a certain number of rows above the current Range object. 1.1
getRowsBelow(count: number) Range Gets a certain number of rows below the current Range object. 1.1
getUsedRange(valuesOnly: bool) Range Returns the used range of the given range object. If there are no used cells within the range, this function will throw an ItemNotFound error. 1.1
getUsedRangeOrNullObject(valuesOnly: bool) Range Returns the used range of the given range object. If there are no used cells within the range, this function will return a null object. 1.4
getVisibleView() RangeView Represents the visible rows of the current range. 1.3
insert(shift: string) Range Inserts a cell or a range of cells into the worksheet in place of this range, and shifts the other cells to make space. Returns a new Range object at the now blank space. 1.1
merge(across: bool) void Merge the range cells into one region in the worksheet. 1.2
select() void Selects the specified range in the Excel UI. 1.1
unmerge() void Unmerge the range cells into separate cells. 1.2

Method Details

calculate()

Calculates a range of cells on a worksheet.

Syntax

rangeObject.calculate();

Parameters

None

Returns

void

clear(applyTo: string)

Clear range values, format, fill, border, etc.

Syntax

rangeObject.clear(applyTo);

Parameters

Parameter Type Description
applyTo string Optional. Determines the type of clear action. Possible values are: All Default-option,Formats ,Contents

Returns

void

Examples

Below example clears format and contents of the range.

Excel.run(function (ctx) { 
    var sheetName = "Sheet1";
    var rangeAddress = "D:F";
    var range = ctx.workbook.worksheets.getItem(sheetName).getRange(rangeAddress);
    range.clear();
    return ctx.sync(); 
}).catch(function(error) {
        console.log("Error: " + error);
        if (error instanceof OfficeExtension.Error) {
            console.log("Debug info: " + JSON.stringify(error.debugInfo));
        }
});

delete(shift: string)

Deletes the cells associated with the range.

Syntax

rangeObject.delete(shift);

Parameters

Parameter Type Description
shift string Specifies which way to shift the cells. Possible values are: Up, Left

Returns

void

Examples

Excel.run(function (ctx) { 
    var sheetName = "Sheet1";
    var rangeAddress = "D:F";
    var range = ctx.workbook.worksheets.getItem(sheetName).getRange(rangeAddress);
    range.delete();
    return ctx.sync(); 
}).catch(function(error) {
        console.log("Error: " + error);
        if (error instanceof OfficeExtension.Error) {
            console.log("Debug info: " + JSON.stringify(error.debugInfo));
        }
});

getBoundingRect(anotherRange: Range or string)

Gets the smallest range object that encompasses the given ranges. For example, the GetBoundingRect of "B2:C5" and "D10:E15" is "B2:E16".

Syntax

rangeObject.getBoundingRect(anotherRange);

Parameters

Parameter Type Description
anotherRange Range or string The range object or address or range name.

Returns

Range

Examples


Excel.run(function (ctx) { 
    var sheetName = "Sheet1";
    var rangeAddress = "D4:G6";
    var range = ctx.workbook.worksheets.getItem(sheetName).getRange(rangeAddress);
    var range = range.getBoundingRect("G4:H8");
    range.load('address');
    return ctx.sync().then(function() {
        console.log(range.address); // Prints Sheet1!D4:H8
    });
}).catch(function(error) {
        console.log("Error: " + error);
        if (error instanceof OfficeExtension.Error) {
            console.log("Debug info: " + JSON.stringify(error.debugInfo));
        }
});

getCell(row: number, column: number)

Gets the range object containing the single cell based on row and column numbers. The cell can be outside the bounds of its parent range, so long as it's stays within the worksheet grid. The returned cell is located relative to the top left cell of the range.

Syntax

rangeObject.getCell(row, column);

Parameters

Parameter Type Description
row number Row number of the cell to be retrieved. Zero-indexed.
column number Column number of the cell to be retrieved. Zero-indexed.

Returns

Range

Examples

Excel.run(function (ctx) { 
    var sheetName = "Sheet1";
    var rangeAddress = "A1:F8";
    var worksheet = ctx.workbook.worksheets.getItem(sheetName);
    var range = worksheet.getRange(rangeAddress);
    var cell = range.cell(0,0);
    cell.load('address');
    return ctx.sync().then(function() {
        console.log(cell.address);
    });
}).catch(function(error) {
        console.log("Error: " + error);
        if (error instanceof OfficeExtension.Error) {
            console.log("Debug info: " + JSON.stringify(error.debugInfo));
        }
});

getColumn(column: number)

Gets a column contained in the range.

Syntax

rangeObject.getColumn(column);

Parameters

Parameter Type Description
column number Column number of the range to be retrieved. Zero-indexed.

Returns

Range

Examples


Excel.run(function (ctx) { 
    var sheetName = "Sheet19";
    var rangeAddress = "A1:F8";
    var range = ctx.workbook.worksheets.getItem(sheetName).getRange(rangeAddress).getColumn(1);
    range.load('address');
    return ctx.sync().then(function() {
        console.log(range.address); // prints Sheet1!B1:B8
    });
}).catch(function(error) {
        console.log("Error: " + error);
        if (error instanceof OfficeExtension.Error) {
            console.log("Debug info: " + JSON.stringify(error.debugInfo));
        }
});

getColumnsAfter(count: number)

Gets a certain number of columns to the right of the current Range object.

Syntax

rangeObject.getColumnsAfter(count);

Parameters

Parameter Type Description
count number Optional. The number of columns to include in the resulting range. In general, use a positive number to create a range outside the current range. You can also use a negative number to create a range within the current range. The default value is 1.

Returns

Range

getColumnsBefore(count: number)

Gets a certain number of columns to the left of the current Range object.

Syntax

rangeObject.getColumnsBefore(count);

Parameters

Parameter Type Description
count number Optional. The number of columns to include in the resulting range. In general, use a positive number to create a range outside the current range. You can also use a negative number to create a range within the current range. The default value is 1.

Returns

Range

getEntireColumn()

Gets an object that represents the entire column of the range (for example, if the current range represents cells "B4:E11", it's getEntireColumn is a range that represents columns "B:E").

Syntax

rangeObject.getEntireColumn();

Parameters

None

Returns

Range

Examples

Note: the grid properties of the Range (values, numberFormat, formulas) contains null since the Range in question is unbounded.


Excel.run(function (ctx) { 
    var sheetName = "Sheet1";
    var rangeAddress = "D:F";
    var range = ctx.workbook.worksheets.getItem(sheetName).getRange(rangeAddress);
    var rangeEC = range.getEntireColumn();
    rangeEC.load('address');
    return ctx.sync().then(function() {
        console.log(rangeEC.address);
    });
}).catch(function(error) {
        console.log("Error: " + error);
        if (error instanceof OfficeExtension.Error) {
            console.log("Debug info: " + JSON.stringify(error.debugInfo));
        }
});

getEntireRow()

Gets an object that represents the entire row of the range (for example, if the current range represents cells "B4:E11", it's GetEntireRow is a range that represents rows "4:11").

Syntax

rangeObject.getEntireRow();

Parameters

None

Returns

Range

Examples


Excel.run(function (ctx) {
    var sheetName = "Sheet1";
    var rangeAddress = "D:F"; 
    var range = ctx.workbook.worksheets.getItem(sheetName).getRange(rangeAddress);
    var rangeER = range.getEntireRow();
    rangeER.load('address');
    return ctx.sync().then(function() {
        console.log(rangeER.address);
    });
}).catch(function(error) {
        console.log("Error: " + error);
        if (error instanceof OfficeExtension.Error) {
            console.log("Debug info: " + JSON.stringify(error.debugInfo));
        }
});

The grid properties of the Range (values, numberFormat, formulas) contains null since the Range in question is unbounded.

getIntersection(anotherRange: Range or string)

Gets the range object that represents the rectangular intersection of the given ranges.

Syntax

rangeObject.getIntersection(anotherRange);

Parameters

Parameter Type Description
anotherRange Range or string The range object or range address that will be used to determine the intersection of ranges.

Returns

Range

Examples


Excel.run(function (ctx) { 
    var sheetName = "Sheet1";
    var rangeAddress = "A1:F8";
    var range = ctx.workbook.worksheets.getItem(sheetName).getRange(rangeAddress).getIntersection("D4:G6");
    range.load('address');
    return ctx.sync().then(function() {
        console.log(range.address); // prints Sheet1!D4:F6
    });
}).catch(function(error) {
        console.log("Error: " + error);
        if (error instanceof OfficeExtension.Error) {
            console.log("Debug info: " + JSON.stringify(error.debugInfo));
        }
});

getIntersectionOrNullObject(anotherRange: Range or string)

Gets the range object that represents the rectangular intersection of the given ranges. If no intersection is found, will return a null object.

Syntax

rangeObject.getIntersectionOrNullObject(anotherRange);

Parameters

Parameter Type Description
anotherRange Range or string The range object or range address that will be used to determine the intersection of ranges.

Returns

Range

getLastCell()

Gets the last cell within the range. For example, the last cell of "B2:D5" is "D5".

Syntax

rangeObject.getLastCell();

Parameters

None

Returns

Range

Examples


Excel.run(function (ctx) { 
    var sheetName = "Sheet1";
    var rangeAddress = "A1:F8";
    var range = ctx.workbook.worksheets.getItem(sheetName).getRange(rangeAddress).getLastCell();
    range.load('address');
    return ctx.sync().then(function() {
        console.log(range.address); // prints Sheet1!F8
    });
}).catch(function(error) {
        console.log("Error: " + error);
        if (error instanceof OfficeExtension.Error) {
            console.log("Debug info: " + JSON.stringify(error.debugInfo));
        }
});

getLastColumn()

Gets the last column within the range. For example, the last column of "B2:D5" is "D2:D5".

Syntax

rangeObject.getLastColumn();

Parameters

None

Returns

Range

Examples


Excel.run(function (ctx) { 
    var sheetName = "Sheet1";
    var rangeAddress = "A1:F8";
    var range = ctx.workbook.worksheets.getItem(sheetName).getRange(rangeAddress).getLastColumn();
    range.load('address');
    return ctx.sync().then(function() {
        console.log(range.address); // prints Sheet1!F1:F8
    });
}).catch(function(error) {
        console.log("Error: " + error);
        if (error instanceof OfficeExtension.Error) {
            console.log("Debug info: " + JSON.stringify(error.debugInfo));
        }
});

getLastRow()

Gets the last row within the range. For example, the last row of "B2:D5" is "B5:D5".

Syntax

rangeObject.getLastRow();

Parameters

None

Returns

Range

Examples


Excel.run(function (ctx) { 
    var sheetName = "Sheet1";
    var rangeAddress = "A1:F8";
    var range = ctx.workbook.worksheets.getItem(sheetName).getRange(rangeAddress).getLastRow();
    range.load('address');
    return ctx.sync().then(function() {
        console.log(range.address); // prints Sheet1!A8:F8
    });
}).catch(function(error) {
        console.log("Error: " + error);
        if (error instanceof OfficeExtension.Error) {
            console.log("Debug info: " + JSON.stringify(error.debugInfo));
        }
});

getOffsetRange(rowOffset: number, columnOffset: number)

Gets an object which represents a range that's offset from the specified range. The dimension of the returned range will match this range. If the resulting range is forced outside the bounds of the worksheet grid, an error will be thrown.

Syntax

rangeObject.getOffsetRange(rowOffset, columnOffset);

Parameters

Parameter Type Description
rowOffset number The number of rows (positive, negative, or 0) by which the range is to be offset. Positive values are offset downward, and negative values are offset upward.
columnOffset number The number of columns (positive, negative, or 0) by which the range is to be offset. Positive values are offset to the right, and negative values are offset to the left.

Returns

Range

Examples

Excel.run(function (ctx) { 
    var sheetName = "Sheet1";
    var rangeAddress = "D4:F6";
    var range = ctx.workbook.worksheets.getItem(sheetName).getRange(rangeAddress).getOffsetRange(-1,4);
    range.load('address');
    return ctx.sync().then(function() {
        console.log(range.address); // prints Sheet1!H3:K5
    });
}).catch(function(error) {
        console.log("Error: " + error);
        if (error instanceof OfficeExtension.Error) {
            console.log("Debug info: " + JSON.stringify(error.debugInfo));
        }
});

getResizedRange(deltaRows: number, deltaColumns: number)

Gets a Range object similar to the current Range object, but with its bottom-right corner expanded (or contracted) by some number of rows and columns.

Syntax

rangeObject.getResizedRange(deltaRows, deltaColumns);

Parameters

Parameter Type Description
deltaRows number The number of rows by which to expand the bottom-right corner, relative to the current range. Use a positive number to expand the range, or a negative number to decrease it.
deltaColumns number The number of columnsby which to expand the bottom-right corner, relative to the current range. Use a positive number to expand the range, or a negative number to decrease it.

Returns

Range

getRow(row: number)

Gets a row contained in the range.

Syntax

rangeObject.getRow(row);

Parameters

Parameter Type Description
row number Row number of the range to be retrieved. Zero-indexed.

Returns

Range

Examples


Excel.run(function (ctx) { 
    var sheetName = "Sheet1";
    var rangeAddress = "A1:F8";
    var range = ctx.workbook.worksheets.getItem(sheetName).getRange(rangeAddress).getRow(1);
    range.load('address');
    return ctx.sync().then(function() {
        console.log(range.address); // prints Sheet1!A2:F2
    });
}).catch(function(error) {
        console.log("Error: " + error);
        if (error instanceof OfficeExtension.Error) {
            console.log("Debug info: " + JSON.stringify(error.debugInfo));
        }
});

getRowsAbove(count: number)

Gets a certain number of rows above the current Range object.

Syntax

rangeObject.getRowsAbove(count);

Parameters

Parameter Type Description
count number Optional. The number of rows to include in the resulting range. In general, use a positive number to create a range outside the current range. You can also use a negative number to create a range within the current range. The default value is 1.

Returns

Range

getRowsBelow(count: number)

Gets a certain number of rows below the current Range object.

Syntax

rangeObject.getRowsBelow(count);

Parameters

Parameter Type Description
count number Optional. The number of rows to include in the resulting range. In general, use a positive number to create a range outside the current range. You can also use a negative number to create a range within the current range. The default value is 1.

Returns

Range

getUsedRange(valuesOnly: bool)

Returns the used range of the given range object. If there are no used cells within the range, this function will throw an ItemNotFound error.

Syntax

rangeObject.getUsedRange(valuesOnly);

Parameters

Parameter Type Description
valuesOnly bool Optional. Considers only cells with values as used cells.

Returns

Range

Examples


Excel.run(function (ctx) { 
    var sheetName = "Sheet1";
    var rangeAddress = "D:F";
    var range = ctx.workbook.worksheets.getItem(sheetName).getRange(rangeAddress);
    var rangeUR = range.getUsedRange();
    rangeUR.load('address');
    return ctx.sync().then(function() {
        console.log(rangeUR.address);
    });
}).catch(function(error) {
        console.log("Error: " + error);
        if (error instanceof OfficeExtension.Error) {
            console.log("Debug info: " + JSON.stringify(error.debugInfo));
        }
});

getUsedRangeOrNullObject(valuesOnly: bool)

Returns the used range of the given range object. If there are no used cells within the range, this function will return a null object.

Syntax

rangeObject.getUsedRangeOrNullObject(valuesOnly);

Parameters

Parameter Type Description
valuesOnly bool Optional. Considers only cells with values as used cells.

Returns

Range

getVisibleView()

Represents the visible rows of the current range.

Syntax

rangeObject.getVisibleView();

Parameters

None

Returns

RangeView

insert(shift: string)

Inserts a cell or a range of cells into the worksheet in place of this range, and shifts the other cells to make space. Returns a new Range object at the now blank space.

Syntax

rangeObject.insert(shift);

Parameters

Parameter Type Description
shift string Specifies which way to shift the cells. Possible values are: Down, Right

Returns

Range

Examples


Excel.run(function (ctx) { 
    var sheetName = "Sheet1";
    var rangeAddress = "F5:F10";
    var range = ctx.workbook.worksheets.getItem(sheetName).getRange(rangeAddress);
    range.insert();
    return ctx.sync(); 
    });
}).catch(function(error) {
        console.log("Error: " + error);
        if (error instanceof OfficeExtension.Error) {
            console.log("Debug info: " + JSON.stringify(error.debugInfo));
        }
});

merge(across: bool)

Merge the range cells into one region in the worksheet.

Syntax

rangeObject.merge(across);

Parameters

Parameter Type Description
across bool Optional. Set true to merge cells in each row of the specified range as separate merged cells. The default value is false.

Returns

void

Examples

Excel.run(function (ctx) { 
    var sheetName = "Sheet1";
    var rangeAddress = "A1:C3";
    var range = ctx.workbook.worksheets.getItem(sheetName).getRange(rangeAddress);
    range.merge(true);
    return ctx.sync(); 
}).catch(function(error) {
        console.log("Error: " + error);
        if (error instanceof OfficeExtension.Error) {
            console.log("Debug info: " + JSON.stringify(error.debugInfo));
        }
});

Examples

Excel.run(function (ctx) { 
    var sheetName = "Sheet1";
    var rangeAddress = "A1:C3";
    var range = ctx.workbook.worksheets.getItem(sheetName).getRange(rangeAddress);
    range.unmerge();
    return ctx.sync(); 
}).catch(function(error) {
        console.log("Error: " + error);
        if (error instanceof OfficeExtension.Error) {
            console.log("Debug info: " + JSON.stringify(error.debugInfo));
        }
});

select()

Selects the specified range in the Excel UI.

Syntax

rangeObject.select();

Parameters

None

Returns

void

Examples


Excel.run(function (ctx) {
    var sheetName = "Sheet1";
    var rangeAddress = "F5:F10"; 
    var range = ctx.workbook.worksheets.getItem(sheetName).getRange(rangeAddress);
    range.select();
    return ctx.sync(); 
}).catch(function(error) {
        console.log("Error: " + error);
        if (error instanceof OfficeExtension.Error) {
            console.log("Debug info: " + JSON.stringify(error.debugInfo));
        }
});

unmerge()

Unmerge the range cells into separate cells.

Syntax

rangeObject.unmerge();

Parameters

None

Returns

void

Examples

Excel.run(function (ctx) { 
    var sheetName = "Sheet1";
    var rangeAddress = "A1:C3";
    var range = ctx.workbook.worksheets.getItem(sheetName).getRange(rangeAddress);
    range.unmerge();
    return ctx.sync(); 
}).catch(function(error) {
        console.log("Error: " + error);
        if (error instanceof OfficeExtension.Error) {
            console.log("Debug info: " + JSON.stringify(error.debugInfo));
        }
});

Property access examples

Below example uses range address to get the range object.


Excel.run(function (ctx) {
    var sheetName = "Sheet1";
    var rangeAddress = "A1:F8"; 
    var worksheet = ctx.workbook.worksheets.getItem(sheetName);
    var range = worksheet.getRange(rangeAddress);
    range.load('cellCount');
    return ctx.sync().then(function() {
        console.log(range.cellCount);
    });
}).catch(function(error) {
        console.log("Error: " + error);
        if (error instanceof OfficeExtension.Error) {
            console.log("Debug info: " + JSON.stringify(error.debugInfo));
        }
});

Below example uses a named-range to get the range object.


Excel.run(function (ctx) { 
    var rangeName = 'MyRange';
    var range = ctx.workbook.names.getItem(rangeName).range;
    range.load('cellCount');
    return ctx.sync().then(function() {
        console.log(range.cellCount);
    });
}).catch(function(error) {
        console.log("Error: " + error);
        if (error instanceof OfficeExtension.Error) {
            console.log("Debug info: " + JSON.stringify(error.debugInfo));
        }
});

The example below sets number-format, values and formulas on a grid that contains 2x3 grid.

Excel.run(function (ctx) { 
    var sheetName = "Sheet1";
    var rangeAddress = "F5:G7";
    var numberFormat = [[null, "d-mmm"], [null, "d-mmm"], [null, null]]
    var values = [["Today", 42147], ["Tomorrow", "5/24"], ["Difference in days", null]];
    var formulas = [[null,null], [null,null], [null,"=G6-G5"]];
    var range = ctx.workbook.worksheets.getItem(sheetName).getRange(rangeAddress);
    range.numberFormat = numberFormat;
    range.values = values;
    range.formulas= formulas;
    range.load('text');
    return ctx.sync().then(function() {
        console.log(range.text);
    });
}).catch(function(error) {
        console.log("Error: " + error);
        if (error instanceof OfficeExtension.Error) {
            console.log("Debug info: " + JSON.stringify(error.debugInfo));
        }
});

Get the worksheet containing the range.

/* This might be broken still - it was broken before because it 
    it was missing 'var', but might still be wrong because of
    getting information without loading properly. */
Excel.run(function (ctx) { 
    var names = ctx.workbook.names;
    var namedItem = names.getItem('MyRange');
    var range = namedItem.range;
    var rangeWorksheet = range.worksheet;
    rangeWorksheet.load('name');
    return ctx.sync().then(function() {
            console.log(rangeWorksheet.name);
    });
}).catch(function(error) {
        console.log("Error: " + error);
        if (error instanceof OfficeExtension.Error) {
            console.log("Debug info: " + JSON.stringify(error.debugInfo));
        }
});

results matching ""

    No results matching ""