New to Telerik Document ProcessingStart a free 30-day trial

Cell value for formula errors and invalid operations; stores error indicators like #DIV/0!, #REF!, #VALUE!, #N/A, #NAME?, #NUM!, and #NULL!.

Definition

Fields

Error value #DIV/0! indicating division by zero.

C#
public static readonly ErrorCellValue DivisionByZeroErrorCellValue

Error value #NAME? indicating an unrecognized name in a formula.

C#
public static readonly ErrorCellValue NameErrorCellValue

Error value #N/A indicating a value is not available.

C#
public static readonly ErrorCellValue NotAvailableErrorCellValue

Error value #NULL! indicating an invalid intersection of ranges.

C#
public static readonly ErrorCellValue NullErrorCellValue

Error value #NUM! indicating an invalid numeric value in a function.

C#
public static readonly ErrorCellValue NumberErrorCellValue

Error value #REF! indicating an invalid cell reference.

C#
public static readonly ErrorCellValue ReferenceErrorCellValue

Error value #VALUE! indicating an invalid value type for an operation.

C#
public static readonly ErrorCellValue ValueErrorCellValue

Properties

Returns CellValueType.Error.

C#
public override CellValueType ValueType { get; }
Property Value:

The type of the value.

Overrides: CellValueBase<string>.ValueType