Excel.NumErrorCellValue interface

Represents the value of a cell containing a #NUM! error.

Remarks

[ API set: ExcelApi 1.16 ]

Properties

basicType

Represents the value that would be returned by Range.valueTypes for a cell with this value.

basicValue

Represents the value that would be returned by Range.values for a cell with this value. When accessed through a valuesAsJson property, this string value aligns with the en-US locale. When accessed through a valuesAsJsonLocal property, this string value aligns with the user's display locale.

errorSubType

Represents the type of NumErrorCellValue.

errorType

Represents the type of ErrorCellValue.

functionName

Represents the name of the function causing the error.

type

Represents the type of this cell value.

Property Details

basicType

Represents the value that would be returned by Range.valueTypes for a cell with this value.

basicType?: RangeValueType.error | "Error";

Property Value

error | "Error"

Remarks

[ API set: ExcelApi 1.16 ]

basicValue

Represents the value that would be returned by Range.values for a cell with this value. When accessed through a valuesAsJson property, this string value aligns with the en-US locale. When accessed through a valuesAsJsonLocal property, this string value aligns with the user's display locale.

basicValue?: "#NUM!" | string;

Property Value

"#NUM!" | string

Remarks

[ API set: ExcelApi 1.16 ]

errorSubType

Represents the type of NumErrorCellValue.

errorSubType?: NumErrorCellValueSubType | "Unknown" | "ArrayTooLarge";

Property Value

Excel.NumErrorCellValueSubType | "Unknown" | "ArrayTooLarge"

Remarks

[ API set: ExcelApi 1.16 ]

errorType

Represents the type of ErrorCellValue.

errorType?: ErrorCellValueType.num | "Num";

Property Value

num | "Num"

Remarks

[ API set: ExcelApi 1.16 ]

functionName

Represents the name of the function causing the error.

functionName?: string;

Property Value

string

Remarks

[ API set: ExcelApi 1.16 ]

type

Represents the type of this cell value.

type: CellValueType.error | "Error";

Property Value

error | "Error"

Remarks

[ API set: ExcelApi 1.16 ]