-
Notifications
You must be signed in to change notification settings - Fork 140
Open
Labels
FeatureSomething we can add later on without introducing a breaking changeSomething we can add later on without introducing a breaking changeODFF ConformanceODDF 1.3 Evaluator requirementODDF 1.3 Evaluator requirementODFF MGEODDF 1.3 Medium Group Evaluator requirementODDF 1.3 Medium Group Evaluator requirementVerifiedVerified by HandsoncodeVerified by Handsoncode
Description
Description
Based on the requirements we should support error type #Null.
Steps to reproduce
src/Cell.ts
/**
* Possible errors returned by our interpreter.
*/
export enum ErrorType {
/** Division by zero. */
DIV_BY_ZERO = 'DIV_BY_ZERO',
/** Unknown function name. */
NAME = 'NAME',
VALUE = 'VALUE',
NUM = 'NUM',
NA = 'NA',
/** Cyclic dependency. */
CYCLE = 'CYCLE',
/* Wrong address reference. */
REF = 'REF',
}
Links
https://www.oasis-open.org/committees/download.php/16826/openformula-spec-20060221.html#Error
Metadata
Metadata
Assignees
Labels
FeatureSomething we can add later on without introducing a breaking changeSomething we can add later on without introducing a breaking changeODFF ConformanceODDF 1.3 Evaluator requirementODDF 1.3 Evaluator requirementODFF MGEODDF 1.3 Medium Group Evaluator requirementODDF 1.3 Medium Group Evaluator requirementVerifiedVerified by HandsoncodeVerified by Handsoncode
