Skip to content
v3.3.0

HyperFormulaNS

Aggregate class for default export

ArraySize: ArraySize = ArraySize

Defined in src/index.ts:78


CellError: CellError = CellError

Defined in src/index.ts:66


CellType: CellType = CellType

Defined in src/index.ts:67


CellValueDetailedType: object = CellValueDetailedType

Defined in src/index.ts:69


CellValueType: object = CellValueType

Defined in src/index.ts:68


ConfigValueTooBigError: ConfigValueTooBigError = ConfigValueTooBigError

Defined in src/index.ts:73


ConfigValueTooSmallError: ConfigValueTooSmallError = ConfigValueTooSmallError

Defined in src/index.ts:74


DetailedCellError: DetailedCellError = DetailedCellError

Defined in src/index.ts:70


EmptyValue: symbol = EmptyValue

Defined in src/index.ts:80


ErrorType: ErrorType = ErrorType

Defined in src/index.ts:65


EvaluationSuspendedError: EvaluationSuspendedError = EvaluationSuspendedError

Defined in src/index.ts:75


ExpectedOneOfValuesError: ExpectedOneOfValuesError = ExpectedOneOfValuesError

Defined in src/index.ts:76


ExpectedValueOfTypeError: ExpectedValueOfTypeError = ExpectedValueOfTypeError

Defined in src/index.ts:77


ExportedCellChange: ExportedCellChange = ExportedCellChange

Defined in src/index.ts:71


ExportedNamedExpressionChange: ExportedNamedExpressionChange = ExportedNamedExpressionChange

Defined in src/index.ts:72


FunctionArgumentType: FunctionArgumentType = FunctionArgumentType

Defined in src/index.ts:82


FunctionPlugin: FunctionPlugin = FunctionPlugin

Defined in src/index.ts:81


FunctionPluginValidationError: FunctionPluginValidationError = FunctionPluginValidationError

Defined in src/index.ts:83


HyperFormula: HyperFormula = HyperFormula

Defined in src/index.ts:64


InvalidAddressError: InvalidAddressError = InvalidAddressError

Defined in src/index.ts:84


InvalidArgumentsError: InvalidArgumentsError = InvalidArgumentsError

Defined in src/index.ts:85


LanguageAlreadyRegisteredError: LanguageAlreadyRegisteredError = LanguageAlreadyRegisteredError

Defined in src/index.ts:87


LanguageNotRegisteredError: LanguageNotRegisteredError = LanguageNotRegisteredError

Defined in src/index.ts:86


MissingTranslationError: MissingTranslationError = MissingTranslationError

Defined in src/index.ts:88


NamedExpressionDoesNotExistError: NamedExpressionDoesNotExistError = NamedExpressionDoesNotExistError

Defined in src/index.ts:89


NamedExpressionNameIsAlreadyTakenError: NamedExpressionNameIsAlreadyTakenError = NamedExpressionNameIsAlreadyTakenError

Defined in src/index.ts:90


NamedExpressionNameIsInvalidError: NamedExpressionNameIsInvalidError = NamedExpressionNameIsInvalidError

Defined in src/index.ts:91


NoOperationToRedoError: NoOperationToRedoError = NoOperationToRedoError

Defined in src/index.ts:92


NoOperationToUndoError: NoOperationToUndoError = NoOperationToUndoError

Defined in src/index.ts:93


NoRelativeAddressesAllowedError: NoRelativeAddressesAllowedError = NoRelativeAddressesAllowedError

Defined in src/index.ts:94


NoSheetWithIdError: NoSheetWithIdError = NoSheetWithIdError

Defined in src/index.ts:95


NoSheetWithNameError: NoSheetWithNameError = NoSheetWithNameError

Defined in src/index.ts:96


NotAFormulaError: NotAFormulaError = NotAFormulaError

Defined in src/index.ts:97


NothingToPasteError: NothingToPasteError = NothingToPasteError

Defined in src/index.ts:98


ProtectedFunctionTranslationError: ProtectedFunctionTranslationError = ProtectedFunctionTranslationError

Defined in src/index.ts:99


SheetNameAlreadyTakenError: SheetNameAlreadyTakenError = SheetNameAlreadyTakenError

Defined in src/index.ts:100


SheetSizeLimitExceededError: SheetSizeLimitExceededError = SheetSizeLimitExceededError

Defined in src/index.ts:101


SimpleRangeValue: SimpleRangeValue = SimpleRangeValue

Defined in src/index.ts:79


SourceLocationHasArrayError: SourceLocationHasArrayError = SourceLocationHasArrayError

Defined in src/index.ts:102


TargetLocationHasArrayError: TargetLocationHasArrayError = TargetLocationHasArrayError

Defined in src/index.ts:103


UnableToParseError: UnableToParseError = UnableToParseError

Defined in src/index.ts:104


buildDate: string = ‘28/05/2026 16:47:28’

Defined in src/HyperFormula.ts:101

Latest build date.


languages: Record‹string, RawTranslationPackage›

Defined in src/HyperFormula.ts:117

When using the UMD build, this property contains all available languages to use with the registerLanguage method.

For more information, see the Localizing functions guide.


releaseDate: string = ‘20/05/2026’

Defined in src/HyperFormula.ts:108

A release date.


version: string = ‘3.3.0’

Defined in src/HyperFormula.ts:94

Version of the HyperFormula.

get defaultConfig(): ConfigParams

Defined in src/HyperFormula.ts:156

Returns all of HyperFormula’s default configuration options.

example

// returns all default configuration options
const defaultConfig = HyperFormula.defaultConfig;

category Static Accessors

Returns: ConfigParams

buildEmpty(configInput: Partial‹ConfigParams›, namedExpressions: SerializedNamedExpression[]): HyperFormula

Defined in src/HyperFormula.ts:349

Builds an empty engine instance. Can be configured with the optional parameter that represents a ConfigParams. If not specified the engine will be built with the default configuration.

example

const namedExpressions = [
{
name: 'theUltimateQuestionOfLife',
expression: '=42',
},
];
// build with no initial data and with optional config parameter maxColumns
const hfInstance = HyperFormula.buildEmpty({ maxColumns: 1000 }, namedExpressions);

Parameters:

NameTypeDefaultDescription
configInputPartial‹ConfigParams{}engine configuration
namedExpressionsSerializedNamedExpression[][]starting named expressions

Returns: HyperFormula


buildFromArray(sheet: Sheet, configInput: Partial‹ConfigParams›, namedExpressions: SerializedNamedExpression[]): HyperFormula

Defined in src/HyperFormula.ts:275

Builds the engine for a sheet from a two-dimensional array representation. The engine is created with a single sheet. Can be configured with the optional second parameter that represents a ConfigParams. If not specified, the engine will be built with the default configuration.

throws SheetSizeLimitExceededError when sheet size exceeds the limits

throws InvalidArgumentsError when sheet is not an array of arrays

throws FunctionPluginValidationError when plugin class definition is not consistent with metadata

example

// data represented as an array
const sheetData = [
['0', '=SUM(1, 2, 3)', '52'],
['=SUM(A1:C1)', '', '=A1'],
['2', '=SUM(A1:C1)', '=theUltimateQuestionOfLife'],
];
const namedExpressions = [
{
name: 'theUltimateQuestionOfLife',
expression: '=42',
},
];
// method with optional config parameter maxColumns
const hfInstance = HyperFormula.buildFromArray(sheetData, { maxColumns: 1000 }, namedExpressions);

Parameters:

NameTypeDefaultDescription
sheetSheet-two-dimensional array representation of sheet
configInputPartial‹ConfigParams{}engine configuration
namedExpressionsSerializedNamedExpression[][]starting named expressions

Returns: HyperFormula


buildFromSheets(sheets: Sheets, configInput: Partial‹ConfigParams›, namedExpressions: SerializedNamedExpression[]): HyperFormula

Defined in src/HyperFormula.ts:322

Builds the engine from an object containing multiple sheets with names. The engine is created with one or more sheets. Can be configured with the optional second parameter that represents a ConfigParams. If not specified the engine will be built with the default configuration.

throws SheetSizeLimitExceededError when sheet size exceeds the limits

throws InvalidArgumentsError when any sheet is not an array of arrays

throws FunctionPluginValidationError when plugin class definition is not consistent with metadata

example

// data represented as an object with sheets: Sheet1 and Sheet2
const sheetData = {
'Sheet1': [
['1', '', '=Sheet2!$A1'],
['', '2', '=SUM(1, 2, 3)'],
['=Sheet2!$A2', '2', ''],
],
'Sheet2': [
['', '4', '=Sheet1!$B1'],
['', '8', '=SUM(9, 3, 3)'],
['=Sheet1!$B1', '2', '=theUltimateQuestionOfLife'],
],
};
const namedExpressions = [
{
name: 'theUltimateQuestionOfLife',
expression: '=42',
},
];
// method with optional config parameter useColumnIndex
const hfInstance = HyperFormula.buildFromSheets(sheetData, { useColumnIndex: true }, namedExpressions);

Parameters:

NameTypeDefaultDescription
sheetsSheets-object with sheets definition
configInputPartial‹ConfigParams{}engine configuration
namedExpressionsSerializedNamedExpression[][]starting named expressions

Returns: HyperFormula


destroy(): void

Defined in src/HyperFormula.ts:4535

Destroys instance of HyperFormula.

example

// destroys the instance
hfInstance.destroy();

Returns: void


getConfig(): ConfigParams

Defined in src/HyperFormula.ts:1063

Returns current configuration of the engine instance.

For more information, see the Configuration options guide.

example

// should return all config metadata including default and those which were added
const hfConfig = hfInstance.getConfig();

Returns: ConfigParams


rebuildAndRecalculate(): void

Defined in src/HyperFormula.ts:1077

Rebuilds the HyperFormula instance preserving the current sheets data.

example

hfInstance.rebuildAndRecalculate();

Returns: void


updateConfig(newParams: Partial‹ConfigParams›): void

Defined in src/HyperFormula.ts:1040

Updates the config with given new metadata. It is an expensive operation, as it might trigger rebuilding the engine and recalculation of all formulas.

For more information, see the Configuration options guide.

throws ExpectedValueOfTypeError when some parameters of config are of wrong type (e.g., currencySymbol)

throws ConfigValueEmpty when some parameters of config are of invalid value (e.g., currencySymbol)

example

const hfInstance = HyperFormula.buildFromArray([
['1', '2'],
]);
// add a config param, for example maxColumns,
// you can check the configuration with getConfig method
hfInstance.updateConfig({ maxColumns: 1000 });

Parameters:

NameTypeDescription
newParamsPartial‹ConfigParamsconfiguration options to be updated or added

Returns: void


addSheet(sheetName?: undefined | string): string

Defined in src/HyperFormula.ts:2635

Adds a new sheet to the HyperFormula instance. Returns given or autogenerated name of a new sheet.

Note that this method may trigger dependency graph recalculation.

fires sheetAdded after the sheet was added

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

throws SheetNameAlreadyTakenError when sheet with a given name already exists

example

const hfInstance = HyperFormula.buildFromSheets({
MySheet1: [ ['1'] ],
MySheet2: [ ['10'] ],
});
// should return 'MySheet3'
const nameProvided = hfInstance.addSheet('MySheet3');
// should return autogenerated 'Sheet4'
// because no name was provided and 3 other ones already exist
const generatedName = hfInstance.addSheet();

Parameters:

NameType
sheetName?undefined | string

Returns: string


clearSheet(sheetId: number): ExportedChange[]

Defined in src/HyperFormula.ts:2783

Clears the sheet content. Double-checks if the sheet exists.

Returns an array of cells whose values changed as a result of this operation.

Note that this method may trigger dependency graph recalculation.

fires valuesUpdated if recalculation was triggered by this change

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

throws NoSheetWithIdError when the given sheet ID does not exist

example

const hfInstance = HyperFormula.buildFromSheets({
MySheet1: [ ['=SUM(MySheet2!A1:A2)'] ],
MySheet2: [ ['10'] ],
});
// should return a list of cells which values changed after the operation,
// their absolute addresses and new values, in this example it will return:
// [{
// address: { sheet: 0, col: 0, row: 0 },
// newValue: 0,
// }]
const changes = hfInstance.clearSheet(0);

Parameters:

NameTypeDescription
sheetIdnumbersheet ID.

Returns: ExportedChange[]


countSheets(): number

Defined in src/HyperFormula.ts:3472

Returns the number of existing sheets.

example

const hfInstance = HyperFormula.buildFromArray([
['1', '2'],
]);
// should return the number of sheets which is '1'
const sheetsCount = hfInstance.countSheets();

Returns: number


doesSheetExist(sheetName: string): boolean

Defined in src/HyperFormula.ts:3191

Returns true whether sheet with a given name exists. The method accepts sheet name to be checked.

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

example

const hfInstance = HyperFormula.buildFromSheets({
MySheet1: [ ['1'] ],
MySheet2: [ ['10'] ],
});
// should return 'true' since 'MySheet1' exists
const sheetExist = hfInstance.doesSheetExist('MySheet1');

Parameters:

NameTypeDescription
sheetNamestringname of the sheet, case-insensitive.

Returns: boolean


getAllSheetsDimensions(): Record‹string, SheetDimensions

Defined in src/HyperFormula.ts:920

Returns a map containing dimensions of all sheets for the engine instance represented as a key-value pairs where keys are sheet IDs and dimensions are returned as numbers, width and height respectively.

throws NoSheetWithIdError when the given sheet ID does not exist

example

const hfInstance = HyperFormula.buildFromSheets({
Sheet1: [
['1', '2', '=Sheet2!$A1'],
],
Sheet2: [
['3'],
['4'],
],
});
// should return the dimensions of all sheets:
// { Sheet1: { width: 3, height: 1 }, Sheet2: { width: 1, height: 2 } }
const allSheetsDimensions = hfInstance.getAllSheetsDimensions();

Returns: Record‹string, SheetDimensions


getAllSheetsFormulas(): Record‹string, (string | undefined)[][]›

Defined in src/HyperFormula.ts:991

Returns formulas of all sheets in a form of an object which property keys are strings and values are 2D arrays of strings or possibly undefined when the call does not contain a formula.

example

const hfInstance = HyperFormula.buildFromArray([
['1', '2', '=A1+10'],
]);
// should return only formulas: { Sheet1: [ [ undefined, undefined, '=A1+10' ] ] }
const allSheetsFormulas = hfInstance.getAllSheetsFormulas();

Returns: Record‹string, (string | undefined)[][]›


getAllSheetsSerialized(): Record‹string, RawCellContent[][]›

Defined in src/HyperFormula.ts:1012

Returns formulas or values of all sheets in a form of an object which property keys are strings and values are 2D arrays of RawCellContent.

throws EvaluationSuspendedError when the evaluation is suspended

example

const hfInstance = HyperFormula.buildFromArray([
['1', '2', '=A1+10'],
]);
// should return all sheets serialized content: { Sheet1: [ [ 1, 2, '=A1+10' ] ] }
const allSheetsSerialized = hfInstance.getAllSheetsSerialized();

Returns: Record‹string, RawCellContent[][]›


getAllSheetsValues(): Record‹string, CellValue[][]›

Defined in src/HyperFormula.ts:972

Returns values of all sheets in a form of an object which property keys are strings and values are 2D arrays of CellValue.

throws EvaluationSuspendedError when the evaluation is suspended

example

const hfInstance = HyperFormula.buildFromArray([
['1', '=A1+10', '3'],
]);
// should return all sheets values: { Sheet1: [ [ 1, 11, 3 ] ] }
const allSheetsValues = hfInstance.getAllSheetsValues();

Returns: Record‹string, CellValue[][]›


getSheetDimensions(sheetId: number): SheetDimensions

Defined in src/HyperFormula.ts:947

Returns dimensions of a specified sheet. The sheet dimensions is represented with numbers: width and height.

Note: Due to the memory optimizations, some of the empty bottom rows and rightmost columns are not counted to the dimensions.

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

throws NoSheetWithIdError when the given sheet ID does not exist

example

const hfInstance = HyperFormula.buildFromArray([
['1', '2', '=Sheet2!$A1'],
]);
// should return provided sheet's dimensions: { width: 3, height: 1 }
const sheetDimensions = hfInstance.getSheetDimensions(0);

Parameters:

NameTypeDescription
sheetIdnumbersheet ID number

Returns: SheetDimensions


getSheetFormulas(sheetId: number): (string | undefined)[][]

Defined in src/HyperFormula.ts:857

Returns an array with normalized formula strings from Sheet or undefined for a cells that have no value.

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

throws NoSheetWithIdError when the given sheet ID does not exist

example

const hfInstance = HyperFormula.buildFromArray([
['0', '=SUM(1, 2, 3)', '=A1'],
['1', '=TEXT(A2, "0.0%")', '=C1'],
['2', '=SUM(A1:C1)', '=C1'],
]);
// should return all formulas of a sheet:
// [
// [undefined, '=SUM(1, 2, 3)', '=A1'],
// [undefined, '=TEXT(A2, "0.0%")', '=C1'],
// [undefined, '=SUM(A1:C1)', '=C1'],
// ];
const sheetFormulas = hfInstance.getSheetFormulas(0);

Parameters:

NameTypeDescription
sheetIdnumbersheet ID number

Returns: (string | undefined)[][]


getSheetId(sheetName: string): number | undefined

Defined in src/HyperFormula.ts:3166

Returns a unique sheet ID assigned to the sheet with a given name or undefined if the sheet does not exist.

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

example

const hfInstance = HyperFormula.buildFromSheets({
MySheet1: [ ['1'] ],
MySheet2: [ ['10'] ],
});
// should return '0' because 'MySheet1' is of ID '0'
const sheetID = hfInstance.getSheetId('MySheet1');

Parameters:

NameTypeDescription
sheetNamestringname of the sheet, for which we want to retrieve ID, case-insensitive.

Returns: number | undefined


getSheetName(sheetId: number): string | undefined

Defined in src/HyperFormula.ts:3120

Returns a unique sheet name assigned to the sheet of a given ID or undefined if the there is no sheet with a given ID.

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

example

const hfInstance = HyperFormula.buildFromSheets({
MySheet1: [ ['1'] ],
MySheet2: [ ['10'] ],
});
// should return 'MySheet2' as this sheet is the second one
const sheetName = hfInstance.getSheetName(1);

Parameters:

NameTypeDescription
sheetIdnumberID of the sheet, for which we want to retrieve name

Returns: string | undefined


getSheetNames(): string[]

Defined in src/HyperFormula.ts:3142

List all sheet names. Returns an array of sheet names as strings.

example

const hfInstance = HyperFormula.buildFromSheets({
MySheet1: [ ['1'] ],
MySheet2: [ ['10'] ],
});
// should return all sheets names: ['MySheet1', 'MySheet2']
const sheetNames = hfInstance.getSheetNames();

Returns: string[]


getSheetSerialized(sheetId: number): RawCellContent[][]

Defined in src/HyperFormula.ts:890

Returns an array of arrays of RawCellContent with serialized content of cells from Sheet, either a cell formula or an explicit value.

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

throws EvaluationSuspendedError when the evaluation is suspended

throws NoSheetWithIdError when the given sheet ID does not exist

example

const hfInstance = HyperFormula.buildFromArray([
['0', '=SUM(1, 2, 3)', '=A1'],
['1', '=TEXT(A2, "0.0%")', '=C1'],
['2', '=SUM(A1:C1)', '=C1'],
]);
// should return:
// [
// ['0', '=SUM(1, 2, 3)', '=A1'],
// ['1', '=TEXT(A2, "0.0%")', '=C1'],
// ['2', '=SUM(A1:C1)', '=C1'],
// ];
const serializedContent = hfInstance.getSheetSerialized(0);

Parameters:

NameTypeDescription
sheetIdnumbersheet ID number

Returns: RawCellContent[][]


getSheetValues(sheetId: number): CellValue[][]

Defined in src/HyperFormula.ts:824

Returns an array of arrays of CellValue with values of all cells from Sheet. Applies rounding and post-processing.

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

throws NoSheetWithIdError when the given sheet ID does not exist

throws EvaluationSuspendedError when the evaluation is suspended

example

const hfInstance = HyperFormula.buildFromArray([
['0', '=SUM(1, 2, 3)', '=A1'],
['1', '=TEXT(A2, "0.0%")', '=C1'],
['2', '=SUM(A1:C1)', '=C1'],
]);
// should return all values of a sheet: [[0, 6, 0], [1, '1.0%', 0], [2, 6, 0]]
const sheetValues = hfInstance.getSheetValues(0);

Parameters:

NameTypeDescription
sheetIdnumbersheet ID number

Returns: CellValue[][]


isItPossibleToAddSheet(sheetName: string): boolean

Defined in src/HyperFormula.ts:2596

Returns information whether it is possible to add a sheet to the engine. Checks against particular rules to ascertain that addSheet can be called. If returns true, doing addSheet operation won’t throw any errors, and it is possible to add sheet with provided name. Returns false if the chosen name is already used.

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

example

const hfInstance = HyperFormula.buildFromSheets({
MySheet1: [ ['1'] ],
MySheet2: [ ['10'] ],
});
// should return 'false' because 'MySheet2' already exists
const isAddable = hfInstance.isItPossibleToAddSheet('MySheet2');

Parameters:

NameTypeDescription
sheetNamestringsheet name, case-insensitive

Returns: boolean


isItPossibleToClearSheet(sheetId: number): boolean

Defined in src/HyperFormula.ts:2741

Returns information whether it is possible to clear a specified sheet. If returns true, doing clearSheet operation won’t throw any errors, provided sheet exists and its content can be cleared. Returns false otherwise

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

example

const hfInstance = HyperFormula.buildFromSheets({
MySheet1: [ ['1'] ],
MySheet2: [ ['10'] ],
});
// should return 'true' because 'MySheet2' exists and can be cleared
const isClearable = hfInstance.isItPossibleToClearSheet(1);

Parameters:

NameTypeDescription
sheetIdnumbersheet ID.

Returns: boolean


isItPossibleToRemoveSheet(sheetId: number): boolean

Defined in src/HyperFormula.ts:2667

Returns information whether it is possible to remove sheet for the engine. Returns true if the provided sheet exists, and therefore it can be removed, doing removeSheet operation won’t throw any errors. Returns false otherwise

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

example

const hfInstance = HyperFormula.buildFromSheets({
MySheet1: [ ['1'] ],
MySheet2: [ ['10'] ],
});
// should return 'true' because sheet with ID 1 exists and is removable
const isRemovable = hfInstance.isItPossibleToRemoveSheet(1);

Parameters:

NameTypeDescription
sheetIdnumbersheet ID.

Returns: boolean


isItPossibleToRenameSheet(sheetId: number, newName: string): boolean

Defined in src/HyperFormula.ts:3499

Returns information whether it is possible to rename sheet. Returns true if the sheet with provided id exists and new name is available Returns false if sheet cannot be renamed

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

example

const hfInstance = HyperFormula.buildFromSheets({
MySheet1: [ ['1'] ],
MySheet2: [ ['10'] ],
});
// returns true
hfInstance.isItPossibleToRenameSheet(0, 'MySheet0');

Parameters:

NameTypeDescription
sheetIdnumbera sheet number
newNamestringa name of the sheet to be given

Returns: boolean


isItPossibleToReplaceSheetContent(sheetId: number, values: RawCellContent[][]): boolean

Defined in src/HyperFormula.ts:2813

Returns information whether it is possible to replace the sheet content. If returns true, doing setSheetContent operation won’t throw any errors, the provided sheet exists and then its content can be replaced. Returns false otherwise

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

example

const hfInstance = HyperFormula.buildFromSheets({
MySheet1: [ ['1'] ],
MySheet2: [ ['10'] ],
});
// should return 'true' because sheet of ID 0 exists
// and the provided content can be placed in this sheet
const isReplaceable = hfInstance.isItPossibleToReplaceSheetContent(0, [['50'], ['60']]);

Parameters:

NameTypeDescription
sheetIdnumbersheet ID.
valuesRawCellContent[][]array of new values

Returns: boolean


removeSheet(sheetId: number): ExportedChange[]

Defined in src/HyperFormula.ts:2710

Removes a sheet

Returns an array of cells whose values changed as a result of this operation.

Note that this method may trigger dependency graph recalculation.

fires sheetRemoved after the sheet was removed

fires valuesUpdated if recalculation was triggered by this change

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

throws NoSheetWithIdError when the given sheet ID does not exist

example

const hfInstance = HyperFormula.buildFromSheets({
MySheet1: [ ['=SUM(MySheet2!A1:A2)'] ],
MySheet2: [ ['10'] ],
});
// should return a list of cells which values changed after the operation,
// their absolute addresses and new values, in this example it will return:
// [{
// address: { sheet: 0, col: 0, row: 0 },
// newValue: { error: [CellError], value: '#REF!' },
// }]
const changes = hfInstance.removeSheet(1);

Parameters:

NameTypeDescription
sheetIdnumbersheet ID.

Returns: ExportedChange[]


renameSheet(sheetId: number, newName: string): void

Defined in src/HyperFormula.ts:3537

Renames a specified sheet.

Note that this method may trigger dependency graph recalculation.

fires sheetRenamed after the sheet was renamed

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

throws NoSheetWithIdError when the given sheet ID does not exist

throws SheetNameAlreadyTakenError when the provided sheet name already exists

example

const hfInstance = HyperFormula.buildFromSheets({
MySheet1: [ ['1'] ],
MySheet2: [ ['10'] ],
});
// renames the sheet 'MySheet1'
hfInstance.renameSheet(0, 'MySheet0');

Parameters:

NameTypeDescription
sheetIdnumbera sheet ID
newNamestringa name of the sheet to be given, if is the same as the old one the method does nothing

Returns: void


setSheetContent(sheetId: number, values: RawCellContent[][]): ExportedChange[]

Defined in src/HyperFormula.ts:2850

Replaces the sheet content with new values.

Returns an array of cells whose values changed as a result of this operation.

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

throws NoSheetWithIdError when the given sheet ID does not exist

throws InvalidArgumentsError when values argument is not an array of arrays

example

const hfInstance = HyperFormula.buildFromSheets({
MySheet1: [ ['1'] ],
MySheet2: [ ['10'] ],
});
// should return a list of cells which values changed after the operation,
// their absolute addresses and new values
const changes = hfInstance.setSheetContent(0, [['50'], ['60']]);

Parameters:

NameTypeDescription
sheetIdnumbersheet ID.
valuesRawCellContent[][]array of new values

Returns: ExportedChange[]


getFillRangeData(source: SimpleCellRange, target: SimpleCellRange, offsetsFromTarget: boolean): RawCellContent[][]

Defined in src/HyperFormula.ts:2552

Returns values to fill target range using source range, with properly extending the range using wrap-around heuristic.

throws EvaluationSuspendedError when the evaluation is suspended

throws ExpectedValueOfTypeError if source or target are of wrong type

throws SheetsNotEqual if range provided has distinct sheet numbers for start and end

example

const hfInstance = HyperFormula.buildFromArray([[1, '=A1'], ['=$A$1', '2']]);
// should return [['2', '=$A$1', '2'], ['=A3', 1, '=C3'], ['2', '=$A$1', '2']]
hfInstance.getFillRangeData( {start: {sheet: 0, row: 0, col: 0}, end: {sheet: 0, row: 1, col: 1}},
{start: {sheet: 0, row: 1, col: 1}, end: {sheet: 0, row: 3, col: 3}});

Parameters:

NameTypeDefaultDescription
sourceSimpleCellRange-of data
targetSimpleCellRange-range where data is intended to be put
offsetsFromTargetbooleanfalseif true, offsets are computed from target corner, otherwise from source corner

Returns: RawCellContent[][]


getRangeFormulas(source: SimpleCellRange): (string | undefined)[][]

Defined in src/HyperFormula.ts:2482

Returns cell formulas in given range.

throws ExpectedValueOfTypeError if source is of wrong type

throws SheetsNotEqual if range provided has distinct sheet numbers for start and end

throws NoSheetWithIdError when the given sheet ID does not exist

example

const hfInstance = HyperFormula.buildFromArray([
['=SUM(1, 2)', '2', '10'],
['5', '6', '7'],
['40', '30', '20'],
]);
// returns cell formulas of a given range only:
// [ [ '=SUM(1, 2)', undefined ], [ undefined, undefined ] ]
const rangeFormulas = hfInstance.getRangeFormulas({ start: { sheet: 0, col: 0, row: 0 }, end: { sheet: 0, col: 1, row: 1 } });

Parameters:

NameTypeDescription
sourceSimpleCellRangerectangular range

Returns: (string | undefined)[][]


getRangeSerialized(source: SimpleCellRange): RawCellContent[][]

Defined in src/HyperFormula.ts:2518

Returns serialized cells in given range.

throws ExpectedValueOfTypeError if source is of wrong type

throws SheetsNotEqual if range provided has distinct sheet numbers for start and end

throws NoSheetWithIdError when the given sheet ID does not exist

example

const hfInstance = HyperFormula.buildFromArray([
['=SUM(1, 2)', '2', '10'],
['5', '6', '7'],
['40', '30', '20'],
]);
// should return serialized cell content for the given range:
// [ [ '=SUM(1, 2)', 2 ], [ 5, 6 ] ]
const rangeSerialized = hfInstance.getRangeSerialized({ start: { sheet: 0, col: 0, row: 0 }, end: { sheet: 0, col: 1, row: 1 } });

Parameters:

NameTypeDescription
sourceSimpleCellRangerectangular range

Returns: RawCellContent[][]


getRangeValues(source: SimpleCellRange): CellValue[][]

Defined in src/HyperFormula.ts:2446

Returns the cell content of a given range in a CellValue[][] format.

throws ExpectedValueOfTypeError if source is of wrong type

throws SheetsNotEqual if range provided has distinct sheet numbers for start and end

throws NoSheetWithIdError when the given sheet ID does not exist

example

const hfInstance = HyperFormula.buildFromArray([
['=SUM(1, 2)', '2', '10'],
['5', '6', '7'],
['40', '30', '20'],
]);
// returns calculated cells content: [ [ 3, 2 ], [ 5, 6 ] ]
const rangeValues = hfInstance.getRangeValues({ start: { sheet: 0, col: 0, row: 0 }, end: { sheet: 0, col: 1, row: 1 } });

Parameters:

NameTypeDescription
sourceSimpleCellRangerectangular range

Returns: CellValue[][]


addRows(sheetId: number, …indexes: ColumnRowIndex[]): ExportedChange[]

Defined in src/HyperFormula.ts:1693

Adds multiple rows into a specified position in a given sheet. Does nothing if rows are outside effective sheet size.

Returns an array of cells whose values changed as a result of this operation.

Note that this method may trigger dependency graph recalculation.

fires valuesUpdated if recalculation was triggered by this change

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

throws NoSheetWithIdError when the given sheet ID does not exist

throws SheetSizeLimitExceededError when performing this operation would result in sheet size limits exceeding

example

const hfInstance = HyperFormula.buildFromArray([
['1'],
['2'],
]);
// should return a list of cells which values changed after the operation,
// their absolute addresses and new values
const changes = hfInstance.addRows(0, [0, 1]);

Parameters:

NameTypeDescription
sheetIdnumbersheet ID in which rows will be added
...indexesColumnRowIndex[]non-contiguous indexes with format [row, amount], where row is a row number above which the rows will be added

Returns: ExportedChange[]


isItPossibleToAddRows(sheetId: number, …indexes: ColumnRowIndex[]): boolean

Defined in src/HyperFormula.ts:1651

Returns information whether it is possible to add rows into a specified position in a given sheet. Checks against particular rules to ascertain that addRows can be called. If returns true, doing addRows operation won’t throw any errors. Returns false if adding rows would exceed the sheet size limit or given arguments are invalid.

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

example

const hfInstance = HyperFormula.buildFromArray([
['1', '2', '3'],
]);
// should return 'true' for this example,
// it is possible to add one row in the second row of sheet 0
const isAddable = hfInstance.isItPossibleToAddRows(0, [1, 1]);

Parameters:

NameTypeDescription
sheetIdnumbersheet ID in which rows will be added
...indexesColumnRowIndex[]non-contiguous indexes with format [row, amount], where row is a row number above which the rows will be added

Returns: boolean


isItPossibleToMoveRows(sheetId: number, startRow: number, numberOfRows: number, targetRow: number): boolean

Defined in src/HyperFormula.ts:2048

Returns information whether it is possible to move a particular number of rows to a specified position in a given sheet. Checks against particular rules to ascertain that moveRows can be called. If returns true, doing moveRows operation won’t throw any errors. Returns false if the operation might be disrupted and causes side effects by the fact that there is an array inside the selected rows, the target location includes an array or the provided address is invalid.

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

example

const hfInstance = HyperFormula.buildFromArray([
['1'],
['2'],
]);
// should return 'true' for this example
// it is possible to move one row from row 0 into row 2
const isMovable = hfInstance.isItPossibleToMoveRows(0, 0, 1, 2);

Parameters:

NameTypeDescription
sheetIdnumbera sheet number in which the operation will be performed
startRownumbernumber of the first row to move
numberOfRowsnumbernumber of rows to move
targetRownumberrow number before which rows will be moved

Returns: boolean


isItPossibleToRemoveRows(sheetId: number, …indexes: ColumnRowIndex[]): boolean

Defined in src/HyperFormula.ts:1724

Returns information whether it is possible to remove rows from a specified position in a given sheet. Checks against particular rules to ascertain that removeRows can be called. If returns true, doing removeRows operation won’t throw any errors. Returns false if given arguments are invalid.

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

example

const hfInstance = HyperFormula.buildFromArray([
['1'],
['2'],
]);
// should return 'true' for this example
// it is possible to remove one row from row 1 of sheet 0
const isRemovable = hfInstance.isItPossibleToRemoveRows(0, [1, 1]);

Parameters:

NameTypeDescription
sheetIdnumbersheet ID from which rows will be removed
...indexesColumnRowIndex[]non-contiguous indexes with format: [row, amount]

Returns: boolean


isItPossibleToSetRowOrder(sheetId: number, newRowOrder: number[]): boolean

Defined in src/HyperFormula.ts:1454

Checks if it is possible to reorder rows of a sheet according to a permutation.

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

example

const hfInstance = HyperFormula.buildFromArray([
[1],
[2],
[4, 5],
]);
// returns true
hfInstance.isItPossibleToSetRowOrder(0, [2, 1, 0]);
// returns false
hfInstance.isItPossibleToSetRowOrder(0, [2]);

Parameters:

NameTypeDescription
sheetIdnumberID of a sheet to operate on
newRowOrdernumber[]permutation of rows

Returns: boolean


isItPossibleToSwapRowIndexes(sheetId: number, rowMapping: [number, number][]): boolean

Defined in src/HyperFormula.ts:1375

Checks if it is possible to reorder rows of a sheet according to a source-target mapping.

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

example

const hfInstance = HyperFormula.buildFromArray([
[1],
[2],
[4, 5],
]);
// returns true
const isSwappable = hfInstance.isItPossibleToSwapRowIndexes(0, [[0, 2], [2, 0]]);
// returns false
const isSwappable = hfInstance.isItPossibleToSwapRowIndexes(0, [[0, 1]]);

Parameters:

NameTypeDescription
sheetIdnumberID of a sheet to operate on
rowMapping[number, number][]array mapping original positions to final positions of rows

Returns: boolean


moveRows(sheetId: number, startRow: number, numberOfRows: number, targetRow: number): ExportedChange[]

Defined in src/HyperFormula.ts:2095

Moves a particular number of rows to a specified position in a given sheet.

Returns an array of cells whose values changed as a result of this operation.

Note that this method may trigger dependency graph recalculation.

fires valuesUpdated if recalculation was triggered by this change

throws NoSheetWithIdError when the given sheet ID does not exist

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

throws InvalidArgumentsError when the given arguments are invalid

throws SourceLocationHasArrayError when the source location has array inside - array cannot be moved

throws TargetLocationHasArrayError when the target location has array inside - cells cannot be replaced by the array

example

const hfInstance = HyperFormula.buildFromArray([
['1'],
['2'],
]);
// should return a list of cells which values changed after the operation,
// their absolute addresses and new values
const changes = hfInstance.moveRows(0, 0, 1, 2);

Parameters:

NameTypeDescription
sheetIdnumbera sheet number in which the operation will be performed
startRownumbernumber of the first row to move
numberOfRowsnumbernumber of rows to move
targetRownumberrow number before which rows will be moved

Returns: ExportedChange[]


removeRows(sheetId: number, …indexes: ColumnRowIndex[]): ExportedChange[]

Defined in src/HyperFormula.ts:1765

Removes multiple rows from a specified position in a given sheet. Does nothing if rows are outside the effective sheet size.

Returns an array of cells whose values changed as a result of this operation.

Note that this method may trigger dependency graph recalculation.

fires valuesUpdated if recalculation was triggered by this change

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

throws InvalidArgumentsError when the given arguments are invalid

throws NoSheetWithIdError when the given sheet ID does not exist

example

const hfInstance = HyperFormula.buildFromArray([
['1'],
['2'],
]);
// should return: [{ sheet: 0, col: 1, row: 2, value: null }] for this example
const changes = hfInstance.removeRows(0, [1, 1]);

Parameters:

NameTypeDescription
sheetIdnumbersheet ID from which rows will be removed
...indexesColumnRowIndex[]non-contiguous indexes with format: [row, amount]

Returns: ExportedChange[]


setRowOrder(sheetId: number, newRowOrder: number[]): ExportedChange[]

Defined in src/HyperFormula.ts:1423

Reorders rows of a sheet according to a permutation of 0-based indexes. Parameter newRowOrder should have a form [ newPositionForRow0, newPositionForRow1, newPositionForRow2, ... ]. This method might be used to sort the rows of a sheet.

Returns an array of cells whose values changed as a result of this operation.

Note: This method may trigger dependency graph recalculation.

fires valuesUpdated if recalculation was triggered by this change

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

throws NoSheetWithIdError when the given sheet ID does not exist

throws InvalidArgumentsError when rowMapping does not define correct row permutation for some subset of rows of the given sheet

throws SourceLocationHasArrayError when the selected position has array inside

example

const hfInstance = HyperFormula.buildFromArray([
['A'],
['B'],
['C'],
['D']
]);
const newRowOrder = [0, 3, 2, 1]; // [ newPosForA, newPosForB, newPosForC, newPosForD ]
const changes = hfInstance.setRowOrder(0, newRowOrder);
// Sheet after this operation: [['A'], ['D'], ['C'], ['B']]

Parameters:

NameTypeDescription
sheetIdnumberID of a sheet to operate on
newRowOrdernumber[]permutation of rows; array length must match the number of rows returned by getSheetDimensions()

Returns: ExportedChange[]


swapRowIndexes(sheetId: number, rowMapping: [number, number][]): ExportedChange[]

Defined in src/HyperFormula.ts:1344

Reorders rows of a sheet according to a source-target mapping.

Returns an array of cells whose values changed as a result of this operation.

Note that this method may trigger dependency graph recalculation.

fires valuesUpdated if recalculation was triggered by this change

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

throws NoSheetWithIdError when the given sheet ID does not exist

throws InvalidArgumentsError when rowMapping does not define correct row permutation for some subset of rows of the given sheet

throws SourceLocationHasArrayError when the selected position has array inside

example

const hfInstance = HyperFormula.buildFromArray([
[1],
[2],
[4, 5],
]);
// should set swap rows 0 and 2 in place, returns:
// [{
// address: { sheet: 0, col: 0, row: 2 },
// newValue: 1,
// },
// {
// address: { sheet: 0, col: 1, row: 2 },
// newValue: null,
// },
// {
// address: { sheet: 0, col: 0, row: 0 },
// newValue: 4,
// },
// {
// address: { sheet: 0, col: 1, row: 0 },
// newValue: 5,
// }]
const changes = hfInstance.swapRowIndexes(0, [[0, 2], [2, 0]]);

Parameters:

NameTypeDescription
sheetIdnumberID of a sheet to operate on
rowMapping[number, number][]array mapping original positions to final positions of rows

Returns: ExportedChange[]


addColumns(sheetId: number, …indexes: ColumnRowIndex[]): ExportedChange[]

Defined in src/HyperFormula.ts:1841

Adds multiple columns into a specified position in a given sheet. Does nothing if the columns are outside the effective sheet size.

Returns an array of cells whose values changed as a result of this operation.

Note that this method may trigger dependency graph recalculation.

fires valuesUpdated if recalculation was triggered by this change

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

throws NoSheetWithIdError when the given sheet ID does not exist

throws InvalidArgumentsError when the given arguments are invalid

throws SheetSizeLimitExceededError when performing this operation would result in sheet size limits exceeding

example

const hfInstance = HyperFormula.buildFromArray([
['=RAND()', '42'],
]);
// should return a list of cells which values changed after the operation,
// their absolute addresses and new values, for this example:
// [{
// address: { sheet: 0, col: 1, row: 0 },
// newValue: 0.92754862796338,
// }]
const changes = hfInstance.addColumns(0, [0, 1]);

Parameters:

NameTypeDescription
sheetIdnumbersheet ID in which columns will be added
...indexesColumnRowIndex[]non-contiguous indexes with format: [column, amount], where column is a column number from which new columns will be added

Returns: ExportedChange[]


isItPossibleToAddColumns(sheetId: number, …indexes: ColumnRowIndex[]): boolean

Defined in src/HyperFormula.ts:1795

Returns information whether it is possible to add columns into a specified position in a given sheet. Checks against particular rules to ascertain that addColumns can be called. If returns true, doing addColumns operation won’t throw any errors. Returns false if adding columns would exceed the sheet size limit or given arguments are invalid.

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

example

const hfInstance = HyperFormula.buildFromArray([
['1', '2'],
]);
// should return 'true' for this example,
// it is possible to add 1 column in sheet 0, at column 1
const isAddable = hfInstance.isItPossibleToAddColumns(0, [1, 1]);

Parameters:

NameTypeDescription
sheetIdnumbersheet ID in which columns will be added
...indexesColumnRowIndex[]non-contiguous indexes with format: [column, amount], where column is a column number from which new columns will be added

Returns: boolean


isItPossibleToMoveColumns(sheetId: number, startColumn: number, numberOfColumns: number, targetColumn: number): boolean

Defined in src/HyperFormula.ts:2130

Returns information whether it is possible to move a particular number of columns to a specified position in a given sheet. Checks against particular rules to ascertain that moveColumns can be called. If returns true, doing moveColumns operation won’t throw any errors. Returns false if the operation might be disrupted and causes side effects by the fact that there is an array inside the selected columns, the target location includes an array or the provided address is invalid.

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

example

const hfInstance = HyperFormula.buildFromArray([
['1', '2'],
]);
// should return 'true' for this example
// it is possible to move one column from column 1 into column 2 of sheet 0
const isMovable = hfInstance.isItPossibleToMoveColumns(0, 1, 1, 2);

Parameters:

NameTypeDescription
sheetIdnumbera sheet number in which the operation will be performed
startColumnnumbernumber of the first column to move
numberOfColumnsnumbernumber of columns to move
targetColumnnumbercolumn number before which columns will be moved

Returns: boolean


isItPossibleToRemoveColumns(sheetId: number, …indexes: ColumnRowIndex[]): boolean

Defined in src/HyperFormula.ts:1871

Returns information whether it is possible to remove columns from a specified position in a given sheet. Checks against particular rules to ascertain that removeColumns can be called. If returns true, doing removeColumns operation won’t throw any errors. Returns false if given arguments are invalid.

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

example

const hfInstance = HyperFormula.buildFromArray([
['1', '2'],
]);
// should return 'true' for this example
// it is possible to remove one column, in place of the second column of sheet 0
const isRemovable = hfInstance.isItPossibleToRemoveColumns(0, [1, 1]);

Parameters:

NameTypeDescription
sheetIdnumbersheet ID from which columns will be removed
...indexesColumnRowIndex[]non-contiguous indexes with format [column, amount]

Returns: boolean


isItPossibleToSetColumnOrder(sheetId: number, newColumnOrder: number[]): boolean

Defined in src/HyperFormula.ts:1615

Checks if it is possible to reorder columns of a sheet according to a permutation.

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

example

const hfInstance = HyperFormula.buildFromArray([
[1, 2, 4],
[5]
]);
// returns true
hfInstance.isItPossibleToSetColumnOrder(0, [2, 1, 0]);
// returns false
hfInstance.isItPossibleToSetColumnOrder(0, [1]);

Parameters:

NameTypeDescription
sheetIdnumberID of a sheet to operate on
newColumnOrdernumber[]permutation of columns

Returns: boolean


isItPossibleToSwapColumnIndexes(sheetId: number, columnMapping: [number, number][]): boolean

Defined in src/HyperFormula.ts:1540

Checks if it is possible to reorder columns of a sheet according to a source-target mapping.

fires valuesUpdated if recalculation was triggered by this change

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

example

const hfInstance = HyperFormula.buildFromArray([
[1, 2, 4],
[5]
]);
// returns true
hfInstance.isItPossibleToSwapColumnIndexes(0, [[0, 2], [2, 0]]);
// returns false
hfInstance.isItPossibleToSwapColumnIndexes(0, [[0, 1]]);

Parameters:

NameType
sheetIdnumber
columnMapping[number, number][]

Returns: boolean


moveColumns(sheetId: number, startColumn: number, numberOfColumns: number, targetColumn: number): ExportedChange[]

Defined in src/HyperFormula.ts:2183

Moves a particular number of columns to a specified position in a given sheet.

Returns an array of cells whose values changed as a result of this operation.

Note that this method may trigger dependency graph recalculation.

fires valuesUpdated if recalculation was triggered by this change

throws NoSheetWithIdError when the given sheet ID does not exist

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

throws InvalidArgumentsError when the given arguments are invalid

throws SourceLocationHasArrayError when the source location has array inside - array cannot be moved

throws TargetLocationHasArrayError when the target location has array inside - cells cannot be replaced by the array

example

const hfInstance = HyperFormula.buildFromArray([
['1', '2', '3', '=RAND()', '=SUM(A1:C1)'],
]);
// should return a list of cells which values changed after the operation,
// their absolute addresses and new values, for this example:
// [{
// address: { sheet: 0, col: 1, row: 0 },
// newValue: 0.16210054671639,
// }, {
// address: { sheet: 0, col: 4, row: 0 },
// newValue: 6.16210054671639,
// }]
const changes = hfInstance.moveColumns(0, 1, 1, 2);

Parameters:

NameTypeDescription
sheetIdnumbera sheet number in which the operation will be performed
startColumnnumbernumber of the first column to move
numberOfColumnsnumbernumber of columns to move
targetColumnnumbercolumn number before which columns will be moved

Returns: ExportedChange[]


removeColumns(sheetId: number, …indexes: ColumnRowIndex[]): ExportedChange[]

Defined in src/HyperFormula.ts:1916

Removes multiple columns from a specified position in a given sheet. Does nothing if columns are outside the effective sheet size.

Returns an array of cells whose values changed as a result of this operation.

Note that this method may trigger dependency graph recalculation.

fires valuesUpdated if recalculation was triggered by this change

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

throws NoSheetWithIdError when the given sheet ID does not exist

throws InvalidArgumentsError when the given arguments are invalid

example

const hfInstance = HyperFormula.buildFromArray([
['0', '=SUM(1, 2, 3)', '=A1'],
]);
// should return a list of cells which values changed after the operation,
// their absolute addresses and new values, in this example it will return:
// [{
// address: { sheet: 0, col: 1, row: 0 },
// newValue: { error: [CellError], value: '#REF!' },
// }]
const changes = hfInstance.removeColumns(0, [0, 1]);

Parameters:

NameTypeDescription
sheetIdnumbersheet ID from which columns will be removed
...indexesColumnRowIndex[]non-contiguous indexes with format: [column, amount]

Returns: ExportedChange[]


setColumnOrder(sheetId: number, newColumnOrder: number[]): ExportedChange[]

Defined in src/HyperFormula.ts:1585

Reorders columns of a sheet according to a permutation of 0-based indexes. Parameter newColumnOrder should have a form [ newPositionForColumn0, newPositionForColumn1, newPositionForColumn2, ... ]. This method might be used to sort the columns of a sheet.

Returns an array of cells whose values changed as a result of this operation.

Note: This method may trigger dependency graph recalculation.

fires valuesUpdated if recalculation was triggered by this change

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

throws NoSheetWithIdError when the given sheet ID does not exist

throws InvalidArgumentsError when columnMapping does not define correct column permutation for some subset of columns of the given sheet

throws SourceLocationHasArrayError when the selected position has array inside

example

const hfInstance = HyperFormula.buildFromArray([
['A', 'B', 'C', 'D']
]);
const newColumnOrder = [0, 3, 2, 1]; // [ newPosForA, newPosForB, newPosForC, newPosForD ]
const changes = hfInstance.setColumnOrder(0, newColumnOrder);
// Sheet after this operation: [['A', 'D', 'C', 'B']]

Parameters:

NameTypeDescription
sheetIdnumberID of a sheet to operate on
newColumnOrdernumber[]permutation of columns; array length must match the number of columns returned by getSheetDimensions()

Returns: ExportedChange[]


swapColumnIndexes(sheetId: number, columnMapping: [number, number][]): ExportedChange[]

Defined in src/HyperFormula.ts:1512

Reorders columns of a sheet according to a source-target mapping.

Returns an array of cells whose values changed as a result of this operation.

Note that this method may trigger dependency graph recalculation.

fires valuesUpdated if recalculation was triggered by this change

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

throws NoSheetWithIdError when the given sheet ID does not exist

throws InvalidArgumentsError when columnMapping does not define correct column permutation for some subset of columns of the given sheet

throws SourceLocationHasArrayError when the selected position has array inside

example

const hfInstance = HyperFormula.buildFromArray([
[1, 2, 4],
[5]
]);
// should set swap columns 0 and 2 in place, returns:
// [{
// address: { sheet: 0, col: 2, row: 0 },
// newValue: 1,
// },
// {
// address: { sheet: 0, col: 2, row: 1 },
// newValue: 5,
// },
// {
// address: { sheet: 0, col: 0, row: 0 },
// newValue: 4,
// },
// {
// address: { sheet: 0, col: 0, row: 1 },
// newValue: null,
// }]
const changes = hfInstance.swapColumnIndexes(0, [[0, 2], [2, 0]]);

Parameters:

NameTypeDescription
sheetIdnumberID of a sheet to operate on
columnMapping[number, number][]array mapping original positions to final positions of columns

Returns: ExportedChange[]


doesCellHaveFormula(cellAddress: SimpleCellAddress): boolean

Defined in src/HyperFormula.ts:3283

Returns true if the specified cell contains a formula. The method accepts cell coordinates as object with column, row and sheet numbers.

throws NoSheetWithIdError when the given sheet ID does not exist

throws ExpectedValueOfTypeError if cellAddress is of wrong type

example

const hfInstance = HyperFormula.buildFromArray([
['=SUM(A2:A3)', '2'],
]);
// should return 'true' since the A1 cell contains a formula
const A1Formula = hfInstance.doesCellHaveFormula({ sheet: 0, col: 0, row: 0 });
// should return 'false' since the B1 cell does not contain a formula
const B1NoFormula = hfInstance.doesCellHaveFormula({ sheet: 0, col: 1, row: 0 });

Parameters:

NameTypeDescription
cellAddressSimpleCellAddresscell coordinates

Returns: boolean


doesCellHaveSimpleValue(cellAddress: SimpleCellAddress): boolean

Defined in src/HyperFormula.ts:3252

Returns true if the specified cell contains a simple value. The method accepts cell coordinates as object with column, row and sheet numbers.

throws NoSheetWithIdError when the given sheet ID does not exist

throws ExpectedValueOfTypeError if cellAddress is of wrong type

example

const hfInstance = HyperFormula.buildFromArray([
['=SUM(A2:A3)', '2'],
]);
// should return 'true' since the selected cell contains a simple value
const isA1Simple = hfInstance.doesCellHaveSimpleValue({ sheet: 0, col: 0, row: 0 });
// should return 'false' since the selected cell does not contain a simple value
const isB1Simple = hfInstance.doesCellHaveSimpleValue({ sheet: 0, col: 1, row: 0 });

Parameters:

NameTypeDescription
cellAddressSimpleCellAddresscell coordinates

Returns: boolean


getCellFormula(cellAddress: SimpleCellAddress): string | undefined

Defined in src/HyperFormula.ts:730

Returns a normalized formula string from the cell of a given address or undefined for an address that does not exist and empty values.

throws NoSheetWithIdError when the given sheet ID does not exist

throws ExpectedValueOfTypeError when cellAddress is of incorrect type

example

const hfInstance = HyperFormula.buildFromArray([
['=SUM(1, 2, 3)', '0'],
]);
// should return a normalized A1 cell formula: '=SUM(1, 2, 3)'
const A1Formula = hfInstance.getCellFormula({ sheet: 0, col: 0, row: 0 });
// should return a normalized B1 cell formula: 'undefined'
const B1Formula = hfInstance.getCellFormula({ sheet: 0, col: 1, row: 0 });

Parameters:

NameTypeDescription
cellAddressSimpleCellAddresscell coordinates

Returns: string | undefined


getCellHyperlink(cellAddress: SimpleCellAddress): string | undefined

Defined in src/HyperFormula.ts:760

Returns the HYPERLINK url for a cell of a given address or undefined for an address that does not exist or a cell that is not HYPERLINK

throws NoSheetWithIdError when the given sheet ID does not exist

throws ExpectedValueOfTypeError when cellAddress is of incorrect type

example

const hfInstance = HyperFormula.buildFromArray([
['=HYPERLINK("https://hyperformula.handsontable.com/", "HyperFormula")', '0'],
]);
// should return url of 'HYPERLINK': https://hyperformula.handsontable.com/
const A1Hyperlink = hfInstance.getCellHyperlink({ sheet: 0, col: 0, row: 0 });
// should return 'undefined' for a cell that is not 'HYPERLINK'
const B1Hyperlink = hfInstance.getCellHyperlink({ sheet: 0, col: 1, row: 0 });

Parameters:

NameTypeDescription
cellAddressSimpleCellAddresscell coordinates

Returns: string | undefined


getCellSerialized(cellAddress: SimpleCellAddress): RawCellContent

Defined in src/HyperFormula.ts:792

Returns RawCellContent with a serialized content of the cell of a given address: either a cell formula, an explicit value, or an error.

throws NoSheetWithIdError when the given sheet ID does not exist

throws EvaluationSuspendedError when the evaluation is suspended

throws ExpectedValueOfTypeError when cellAddress is of incorrect type

example

const hfInstance = HyperFormula.buildFromArray([
['=SUM(1, 2, 3)', '0'],
]);
// should return serialized content of A1 cell: '=SUM(1, 2, 3)'
const cellA1Serialized = hfInstance.getCellSerialized({ sheet: 0, col: 0, row: 0 });
// should return serialized content of B1 cell: '0'
const cellB1Serialized = hfInstance.getCellSerialized({ sheet: 0, col: 1, row: 0 });

Parameters:

NameTypeDescription
cellAddressSimpleCellAddresscell coordinates

Returns: RawCellContent


getCellType(cellAddress: SimpleCellAddress): CellType

Defined in src/HyperFormula.ts:3220

Returns the type of a cell at a given address. The method accepts cell coordinates as object with column, row and sheet numbers.

throws NoSheetWithIdError when the given sheet ID does not exist

throws ExpectedValueOfTypeError if cellAddress is of wrong type

example

const hfInstance = HyperFormula.buildFromArray([
['=SUM(A2:A3)', '2'],
]);
// should return 'FORMULA', the cell of given coordinates is of this type
const cellA1Type = hfInstance.getCellType({ sheet: 0, col: 0, row: 0 });
// should return 'VALUE', the cell of given coordinates is of this type
const cellB1Type = hfInstance.getCellType({ sheet: 0, col: 1, row: 0 });

Parameters:

NameTypeDescription
cellAddressSimpleCellAddresscell coordinates

Returns: CellType


getCellValue(cellAddress: SimpleCellAddress): CellValue

Defined in src/HyperFormula.ts:699

Returns the cell value of a given address. Applies rounding and post-processing.

throws ExpectedValueOfTypeError when cellAddress is of incorrect type

throws NoSheetWithIdError when the given sheet ID does not exist

throws EvaluationSuspendedError when the evaluation is suspended

example

const hfInstance = HyperFormula.buildFromArray([
['=SUM(1, 2, 3)', '2'],
]);
// get value of A1 cell, should be '6'
const A1Value = hfInstance.getCellValue({ sheet: 0, col: 0, row: 0 });
// get value of B1 cell, should be '2'
const B1Value = hfInstance.getCellValue({ sheet: 0, col: 1, row: 0 });

Parameters:

NameTypeDescription
cellAddressSimpleCellAddresscell coordinates

Returns: CellValue


getCellValueDetailedType(cellAddress: SimpleCellAddress): CellValueDetailedType

Defined in src/HyperFormula.ts:3414

Returns detailed type of the cell value of a given address. The method accepts cell coordinates as object with column, row and sheet numbers.

For more information, see the Types of values guide.

throws NoSheetWithIdError when the given sheet ID does not exist

throws EvaluationSuspendedError when the evaluation is suspended

throws ExpectedValueOfTypeError if cellAddress is of wrong type

example

const hfInstance = HyperFormula.buildFromArray([
['1%', '1$'],
]);
// should return 'NUMBER_PERCENT', cell value type of provided coordinates is a number with a format inference percent.
const cellType = hfInstance.getCellValueDetailedType({ sheet: 0, col: 0, row: 0 });
// should return 'NUMBER_CURRENCY', cell value type of provided coordinates is a number with a format inference currency.
const cellType = hfInstance.getCellValueDetailedType({ sheet: 0, col: 1, row: 0 });

Parameters:

NameTypeDescription
cellAddressSimpleCellAddresscell coordinates

Returns: CellValueDetailedType


getCellValueFormat(cellAddress: SimpleCellAddress): FormatInfo

Defined in src/HyperFormula.ts:3448

Returns auxiliary format information of the cell value of a given address. The method accepts cell coordinates as object with column, row and sheet numbers.

throws NoSheetWithIdError when the given sheet ID does not exist

throws EvaluationSuspendedError when the evaluation is suspended

throws ExpectedValueOfTypeError if cellAddress is of wrong type

example

const hfInstance = HyperFormula.buildFromArray([
['1$', '1'],
]);
// should return '$', cell value type of provided coordinates is a number with a format inference currency, parsed as using '$' as currency.
const cellFormat = hfInstance.getCellValueFormat({ sheet: 0, col: 0, row: 0 });
// should return undefined, cell value type of provided coordinates is a number with no format information.
const cellFormat = hfInstance.getCellValueFormat({ sheet: 0, col: 1, row: 0 });

Parameters:

NameTypeDescription
cellAddressSimpleCellAddresscell coordinates

Returns: FormatInfo


getCellValueType(cellAddress: SimpleCellAddress): CellValueType

Defined in src/HyperFormula.ts:3378

Returns type of the cell value of a given address. The method accepts cell coordinates as object with column, row and sheet numbers.

For more information, see the Types of values guide.

throws NoSheetWithIdError when the given sheet ID does not exist

throws EvaluationSuspendedError when the evaluation is suspended

throws ExpectedValueOfTypeError if cellAddress is of wrong type

example

const hfInstance = HyperFormula.buildFromArray([
['=SUM(1, 2, 3)', '2'],
]);
// should return 'NUMBER', cell value type of provided coordinates is a number
const cellValue = hfInstance.getCellValueType({ sheet: 0, col: 1, row: 0 });
// should return 'NUMBER', cell value type of provided coordinates is a number
const cellValue = hfInstance.getCellValueType({ sheet: 0, col: 0, row: 0 });

Parameters:

NameTypeDescription
cellAddressSimpleCellAddresscell coordinates

Returns: CellValueType


isCellEmpty(cellAddress: SimpleCellAddress): boolean

Defined in src/HyperFormula.ts:3315

Returnstrue if the specified cell is empty. The method accepts cell coordinates as object with column, row and sheet numbers.

throws NoSheetWithIdError when the given sheet ID does not exist

throws ExpectedValueOfTypeError if cellAddress is of wrong type

example

const hfInstance = HyperFormula.buildFromArray([
[null, '1'],
]);
// should return 'true', cell of provided coordinates is empty
const isEmpty = hfInstance.isCellEmpty({ sheet: 0, col: 0, row: 0 });
// should return 'false', cell of provided coordinates is not empty
const isNotEmpty = hfInstance.isCellEmpty({ sheet: 0, col: 1, row: 0 });

Parameters:

NameTypeDescription
cellAddressSimpleCellAddresscell coordinates

Returns: boolean


isCellPartOfArray(cellAddress: SimpleCellAddress): boolean

Defined in src/HyperFormula.ts:3343

Returns true if a given cell is a part of an array. The method accepts cell coordinates as object with column, row and sheet numbers.

throws NoSheetWithIdError when the given sheet ID does not exist

throws ExpectedValueOfTypeError if cellAddress is of wrong type

example

const hfInstance = HyperFormula.buildFromArray([
['{=TRANSPOSE(B1:B1)}'],
]);
// should return 'true', cell of provided coordinates is a part of an array
const isPartOfArray = hfInstance.isCellPartOfArray({ sheet: 0, col: 0, row: 0 });

Parameters:

NameTypeDescription
cellAddressSimpleCellAddresscell coordinates

Returns: boolean


isItPossibleToMoveCells(source: SimpleCellRange, destinationLeftCorner: SimpleCellAddress): boolean

Defined in src/HyperFormula.ts:1952

Returns information whether it is possible to move cells to a specified position in a given sheet. Checks against particular rules to ascertain that moveCells can be called. If returns true, doing moveCells operation won’t throw any errors. Returns false if the operation might be disrupted and causes side effects by the fact that there is an array inside the selected columns, the target location includes an array or the provided address is invalid.

throws ExpectedValueOfTypeError if destinationLeftCorner, source, or any of basic type arguments are of wrong type

throws SheetsNotEqual if range provided has distinct sheet numbers for start and end

example

const hfInstance = HyperFormula.buildFromArray([
['1', '2'],
]);
// choose the coordinates and assign them to variables
const source = { sheet: 0, col: 1, row: 0 };
const destination = { sheet: 0, col: 3, row: 0 };
// should return 'true' for this example
// it is possible to move a block of width 1 and height 1
// from the corner: column 1 and row 0 of sheet 0
// into destination corner: column 3, row 0 of sheet 0
const isMovable = hfInstance.isItPossibleToMoveCells({ start: source, end: source }, destination);

Parameters:

NameTypeDescription
sourceSimpleCellRangerange for a moved block
destinationLeftCornerSimpleCellAddressupper left address of the target cell block

Returns: boolean


isItPossibleToSetCellContents(address: SimpleCellAddress | SimpleCellRange): boolean

Defined in src/HyperFormula.ts:1239

Returns information whether it is possible to change the content in a rectangular area bounded by the box. If returns true, doing setCellContents operation won’t throw any errors. Returns false if the address is invalid or the sheet does not exist.

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

throws SheetsNotEqual if range provided has distinct sheet numbers for start and end

example

const hfInstance = HyperFormula.buildFromArray([
['1', '2'],
]);
// top left corner
const address1 = { col: 0, row: 0, sheet: 0 };
// bottom right corner
const address2 = { col: 1, row: 0, sheet: 0 };
// should return 'true' for this example, it is possible to set content of
// width 2, height 1 in the first row and column of sheet 0
const isSettable = hfInstance.isItPossibleToSetCellContents({ start: address1, end: address2 });

Parameters:

NameTypeDescription
addressSimpleCellAddress | SimpleCellRangesingle cell or block of cells to check

Returns: boolean


moveCells(source: SimpleCellRange, destinationLeftCorner: SimpleCellAddress): ExportedChange[]

Defined in src/HyperFormula.ts:2009

Moves the content of a cell block from source to the target location.

Returns an array of cells whose values changed as a result of this operation.

Note that this method may trigger dependency graph recalculation.

fires valuesUpdated if recalculation was triggered by this change

throws NoSheetWithIdError when the given sheet ID does not exist

throws ExpectedValueOfTypeError if destinationLeftCorner or source are of wrong type

throws InvalidArgumentsError when the given arguments are invalid

throws SheetSizeLimitExceededError when performing this operation would result in sheet size limits exceeding

throws SourceLocationHasArrayError when the source location has array inside - array cannot be moved

throws TargetLocationHasArrayError when the target location has array inside - cells cannot be replaced by the array

throws SheetsNotEqual if range provided has distinct sheet numbers for start and end

example

const hfInstance = HyperFormula.buildFromArray([
['=RAND()', '42'],
]);
// choose the coordinates and assign them to variables
const source = { sheet: 0, col: 1, row: 0 };
const destination = { sheet: 0, col: 3, row: 0 };
// should return a list of cells which values changed after the operation,
// their absolute addresses and new values, for this example:
// [{
// address: { sheet: 0, col: 0, row: 0 },
// newValue: 0.93524248002062,
// }]
const changes = hfInstance.moveCells({ start: source, end: source }, destination);

Parameters:

NameTypeDescription
sourceSimpleCellRangerange for a moved block
destinationLeftCornerSimpleCellAddressupper left address of the target cell block

Returns: ExportedChange[]


setCellContents(topLeftCornerAddress: SimpleCellAddress, cellContents: RawCellContent[][] | RawCellContent): ExportedChange[]

Defined in src/HyperFormula.ts:1292

Sets the content for a block of cells of a given coordinates.

Returns an array of cells whose values changed as a result of this operation.

Note that this method may trigger dependency graph recalculation.

fires valuesUpdated if recalculation was triggered by this change

throws NoSheetWithIdError when the given sheet ID does not exist

throws InvalidArgumentsError when the value is not an array of arrays or a raw cell value

throws SheetSizeLimitExceededError when performing this operation would result in sheet size limits exceeding

throws ExpectedValueOfTypeError if topLeftCornerAddress argument is of wrong type

example

const hfInstance = HyperFormula.buildFromArray([
['1', '2', '=A1'],
]);
// should set the content, returns:
// [{
// address: { sheet: 0, col: 3, row: 0 },
// newValue: 2,
// }]
const changes = hfInstance.setCellContents({ col: 3, row: 0, sheet: 0 }, [['=B1']]);

Parameters:

NameTypeDescription
topLeftCornerAddressSimpleCellAddresstop left corner of block of cells
cellContentsRawCellContent[][] | RawCellContentarray with content

Returns: ExportedChange[]


addNamedExpression(expressionName: string, expression: RawCellContent, scope?: undefined | number, options?: NamedExpressionOptions): ExportedChange[]

Defined in src/HyperFormula.ts:3768

Adds a specified named expression.

Returns an array of cells whose values changed as a result of this operation.

Note that this method may trigger dependency graph recalculation.

fires namedExpressionAdded always, unless batch mode is used

fires valuesUpdated if recalculation was triggered by this change

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

throws NamedExpressionNameIsAlreadyTakenError when the named-expression name is not available.

throws NamedExpressionNameIsInvalidError when the named-expression name is not valid

throws NoRelativeAddressesAllowedError when the named-expression formula contains relative references

throws NoSheetWithIdError if no sheet with given sheetId exists

example

const hfInstance = HyperFormula.buildFromArray([
['42'],
]);
// add own expression, scope limited to 'Sheet1' (sheetId=0), the method should return a list of cells which values
// changed after the operation, their absolute addresses and new values
// for this example:
// [{
// name: 'prettyName',
// newValue: 142,
// }]
const changes = hfInstance.addNamedExpression('prettyName', '=Sheet1!$A$1+100', 0);

Parameters:

NameTypeDescription
expressionNamestringa name of the expression to be added
expressionRawCellContentthe expression
scope?undefined | numberscope definition, sheetId for local scope or undefined for global scope
options?NamedExpressionOptionsadditional metadata related to named expression

Returns: ExportedChange[]


changeNamedExpression(expressionName: string, newExpression: RawCellContent, scope?: undefined | number, options?: NamedExpressionOptions): ExportedChange[]

Defined in src/HyperFormula.ts:3990

Changes a given named expression to a specified formula.

Returns an array of cells whose values changed as a result of this operation.

Note that this method may trigger dependency graph recalculation.

fires valuesUpdated if recalculation was triggered by this change

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

throws NamedExpressionDoesNotExistError when the given expression does not exist.

throws NoSheetWithIdError if no sheet with given sheetId exists

throws [[ArrayFormulasNotSupportedError]] when the named expression formula is an array formula

throws NoRelativeAddressesAllowedError when the named expression formula contains relative references

example

const hfInstance = HyperFormula.buildFromArray([
['42'],
]);
// add a named expression, scope limited to 'Sheet1' (sheetId=0)
hfInstance.addNamedExpression('prettyName', '=Sheet1!$A$1+100', 0);
// change the named expression
const changes = hfInstance.changeNamedExpression('prettyName', '=Sheet1!$A$1+200');

Parameters:

NameTypeDescription
expressionNamestringan expression name, case-insensitive.
newExpressionRawCellContenta new expression
scope?undefined | numberscope definition, sheetId for local scope or undefined for global scope
options?NamedExpressionOptionsadditional metadata related to named expression

Returns: ExportedChange[]


getAllNamedExpressionsSerialized(): SerializedNamedExpression[]

Defined in src/HyperFormula.ts:4158

Returns all named expressions serialized.

For more information, see the Named expressions guide.

example

const hfInstance = HyperFormula.buildFromArray([
['42'],
['50'],
['60'],
]);
// add two named expressions and one scoped
hfInstance.addNamedExpression('prettyName', '=Sheet1!$A$1+100');
hfInstance.addNamedExpression('anotherPrettyName', '=Sheet1!$A$2+100');
hfInstance.addNamedExpression('prettyName3', '=Sheet1!$A$3+100', 0);
// get all expressions serialized
// should return:
// [
// {name: 'prettyName', expression: '=Sheet1!$A$1+100', options: undefined, scope: undefined},
// {name: 'anotherPrettyName', expression: '=Sheet1!$A$2+100', options: undefined, scope: undefined},
// {name: 'alsoPrettyName', expression: '=Sheet1!$A$3+100', options: undefined, scope: 0}
// ]
const allExpressions = hfInstance.getAllNamedExpressionsSerialized();

Returns: SerializedNamedExpression[]


getNamedExpression(expressionName: string, scope?: undefined | number): NamedExpression | undefined

Defined in src/HyperFormula.ts:3893

Returns a named expression, or undefined for a named expression that does not exist or does not hold a formula.

For more information, see the Named expressions guide.

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

throws NoSheetWithIdError if no sheet with given sheetId exists

example

const hfInstance = HyperFormula.buildFromArray([
['42'],
]);
// add a named expression in 'Sheet1' (sheetId=0)
hfInstance.addNamedExpression('prettyName', '=Sheet1!$A$1+100', 0);
// returns a named expression that corresponds to the passed name from 'Sheet1' (sheetId=0)
// for this example, returns:
// {name: 'prettyName', expression: '=Sheet1!$A$1+100', options: undefined, scope: 0}
const myFormula = hfInstance.getNamedExpression('prettyName', 0);
// for a named expression that doesn't exist, returns 'undefined':
const myFormulaTwo = hfInstance.getNamedExpression('uglyName', 0);

Parameters:

NameTypeDescription
expressionNamestringexpression name, case-insensitive.
scope?undefined | numberscope definition, sheetId for local scope or undefined for global scope

Returns: NamedExpression | undefined


getNamedExpressionFormula(expressionName: string, scope?: undefined | number): string | undefined

Defined in src/HyperFormula.ts:3848

Returns a normalized formula string for given named expression, or undefined for a named expression that does not exist or does not hold a formula.

For more information, see the Named expressions guide.

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

throws NoSheetWithIdError if no sheet with given sheetId exists

example

const hfInstance = HyperFormula.buildFromArray([
['42'],
]);
// add a named expression in 'Sheet1' (sheetId=0)
hfInstance.addNamedExpression('prettyName', '=Sheet1!$A$1+100', 0);
// returns a normalized formula string corresponding to the passed name from 'Sheet1' (sheetId=0),
// '=Sheet1!A1+100' for this example
const myFormula = hfInstance.getNamedExpressionFormula('prettyName', 0);

Parameters:

NameTypeDescription
expressionNamestringexpression name, case-insensitive.
scope?undefined | numberscope definition, sheetId for local scope or undefined for global scope

Returns: string | undefined


getNamedExpressionValue(expressionName: string, scope?: undefined | number): CellValue | undefined

Defined in src/HyperFormula.ts:3806

Gets specified named expression value. Returns a CellValue or undefined if the given named expression does not exist.

For more information, see the Named expressions guide.

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

throws NoSheetWithIdError if no sheet with given sheetId exists

example

const hfInstance = HyperFormula.buildFromArray([
['42'],
]);
// add a named expression, only 'Sheet1' (sheetId=0) considered as it is the scope
hfInstance.addNamedExpression('prettyName', '=Sheet1!$A$1+100', 'Sheet1');
// returns the calculated value of a passed named expression, '142' for this example
const myFormula = hfInstance.getNamedExpressionValue('prettyName', 'Sheet1');

Parameters:

NameTypeDescription
expressionNamestringexpression name, case-insensitive.
scope?undefined | numberscope definition, sheetId for local scope or undefined for global scope

Returns: CellValue | undefined


isItPossibleToAddNamedExpression(expressionName: string, expression: RawCellContent, scope?: undefined | number): boolean

Defined in src/HyperFormula.ts:3716

Returns information whether it is possible to add named expression into a specific scope. Checks against particular rules to ascertain that addNamedExpression can be called. If returns true, doing addNamedExpression operation won’t throw any errors. Returns false if the operation might be disrupted.

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

example

const hfInstance = HyperFormula.buildFromArray([
['42'],
]);
// should return 'true' for this example,
// it is possible to add named expression to global scope
const isAddable = hfInstance.isItPossibleToAddNamedExpression('prettyName', '=Sheet1!$A$1+100');

Parameters:

NameTypeDescription
expressionNamestringa name of the expression to be added
expressionRawCellContentthe expression
scope?undefined | numberscope definition, sheetId for local scope or undefined for global scope

Returns: boolean


isItPossibleToChangeNamedExpression(expressionName: string, newExpression: RawCellContent, scope?: undefined | number): boolean

Defined in src/HyperFormula.ts:3942

Returns information whether it is possible to change named expression in a specific scope. Checks against particular rules to ascertain that changeNamedExpression can be called. If returns true, doing changeNamedExpression operation won’t throw any errors. Returns false if the operation might be disrupted.

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

example

const hfInstance = HyperFormula.buildFromArray([
['42'],
]);
// add a named expression
hfInstance.addNamedExpression('prettyName', '=Sheet1!$A$1+100');
// should return 'true' for this example,
// it is possible to change named expression
const isAddable = hfInstance.isItPossibleToChangeNamedExpression('prettyName', '=Sheet1!$A$1+100');

Parameters:

NameTypeDescription
expressionNamestringan expression name, case-insensitive.
newExpressionRawCellContenta new expression
scope?undefined | numberscope definition, sheetId for local scope or undefined for global scope

Returns: boolean


isItPossibleToRemoveNamedExpression(expressionName: string, scope?: undefined | number): boolean

Defined in src/HyperFormula.ts:4026

Returns information whether it is possible to remove named expression from a specific scope. Checks against particular rules to ascertain that removeNamedExpression can be called. If returns true, doing removeNamedExpression operation won’t throw any errors. Returns false if the operation might be disrupted.

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

example

const hfInstance = HyperFormula.buildFromArray([
['42'],
]);
// add a named expression
hfInstance.addNamedExpression('prettyName', '=Sheet1!$A$1+100');
// should return 'true' for this example,
// it is possible to change named expression
const isAddable = hfInstance.isItPossibleToRemoveNamedExpression('prettyName');

Parameters:

NameTypeDescription
expressionNamestringan expression name, case-insensitive.
scope?undefined | numberscope definition, sheetId for local scope or undefined for global scope

Returns: boolean


listNamedExpressions(scope?: undefined | number): string[]

Defined in src/HyperFormula.ts:4120

Lists named expressions.

  • If scope parameter is provided, returns an array of expression names defined for this scope.
  • If scope parameter is undefined, returns an array of global expression names.

For more information, see the Named expressions guide.

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

throws NoSheetWithIdError if no sheet with given sheetId exists

example

const hfInstance = HyperFormula.buildFromArray([
['42'],
['50'],
['60'],
]);
// add two named expressions and one scoped
hfInstance.addNamedExpression('prettyName', '=Sheet1!$A$1+100');
hfInstance.addNamedExpression('anotherPrettyName', '=Sheet1!$A$2+100');
hfInstance.addNamedExpression('alsoPrettyName', '=Sheet1!$A$3+100', 0);
// list the expressions, should return: ['prettyName', 'anotherPrettyName'] for this example
const listOfExpressions = hfInstance.listNamedExpressions();
// list the expressions, should return: ['alsoPrettyName'] for this example
const listOfExpressions = hfInstance.listNamedExpressions(0);

Parameters:

NameTypeDescription
scope?undefined | numberscope of the named expressions, sheetId for local scope or undefined for global scope

Returns: string[]


removeNamedExpression(expressionName: string, scope?: undefined | number): ExportedChange[]

Defined in src/HyperFormula.ts:4071

Removes a named expression.

Returns an array of cells whose values changed as a result of this operation.

Note that this method may trigger dependency graph recalculation.

fires namedExpressionRemoved after the expression was removed

fires valuesUpdated if recalculation was triggered by this change

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

throws NamedExpressionDoesNotExistError when the given expression does not exist.

throws NoSheetWithIdError if no sheet with given sheetId exists

example

const hfInstance = HyperFormula.buildFromArray([
['42'],
]);
// add a named expression
hfInstance.addNamedExpression('prettyName', '=Sheet1!$A$1+100', 0);
// remove the named expression
const changes = hfInstance.removeNamedExpression('prettyName', 0);

Parameters:

NameTypeDescription
expressionNamestringexpression name, case-insensitive.
scope?undefined | numberscope definition, sheetId for local scope or undefined for global scope

Returns: ExportedChange[]


calculateFormula(formulaString: string, sheetId: number): CellValue | CellValue[][]

Defined in src/HyperFormula.ts:4223

Calculates fire-and-forget formula, returns the calculated value.

throws ExpectedValueOfTypeError if any of its basic type arguments is of wrong type.

throws NotAFormulaError when the provided string is not a valid formula (i.e., doesn’t start with =).

throws NoSheetWithIdError when the provided sheetID doesn’t exist.

example

const hfInstance = HyperFormula.buildFromSheets({
Sheet1: [['58']],
Sheet2: [['1', '2', '3'], ['4', '5', '6']]
});
// returns the calculated formula's value
// for this example, returns `68`
const calculatedFormula = hfInstance.calculateFormula('=A1+10', 0);
// for this example, returns [['11', '12', '13'], ['14', '15', '16']]
const calculatedFormula = hfInstance.calculateFormula('=A1:B3+10', 1);

Parameters:

NameTypeDescription
formulaStringstringA formula in a proper format, starting with =.
sheetIdnumberThe ID of a sheet in context of which the formula gets evaluated.

Returns: CellValue | CellValue[][]


getCellDependents(address: SimpleCellAddress | SimpleCellRange): (SimpleCellRange | SimpleCellAddress)[]

Defined in src/HyperFormula.ts:3047

Returns all the out-neighbors in the dependency graph for a given cell address or range. Including:

  • All cells with formulas that contain the given cell address or range
  • Some of the ranges that contain the given cell address or range

The exact result depends on the optimizations applied by the HyperFormula to the dependency graph, some of which are described in the section “Optimizations for large ranges”.

The returned array includes also named expression dependents. They are represented as cell references with sheet ID -1.

throws ExpectedValueOfTypeError if address is not SimpleCellAddress or SimpleCellRange

throws SheetsNotEqual if range provided has distinct sheet numbers for start and end

throws NoSheetWithIdError when the given sheet ID does not exist

example

const hfInstance = HyperFormula.buildFromArray( [ ['1', '=A1', '=A1+B1'] ] );
hfInstance.getCellDependents({ sheet: 0, col: 0, row: 0});
// returns [{ sheet: 0, col: 1, row: 0}, { sheet: 0, col: 2, row: 0}]

Parameters:

NameTypeDescription
addressSimpleCellAddress | SimpleCellRangeobject representation of an absolute address or range of addresses

Returns: (SimpleCellRange | SimpleCellAddress)[]


getCellPrecedents(address: SimpleCellAddress | SimpleCellRange): (SimpleCellRange | SimpleCellAddress)[]

Defined in src/HyperFormula.ts:3085

Returns all the in-neighbors in the dependency graph for a given cell address or range. In particular:

  • If the argument is a single cell, getCellPrecedents() returns all cells and ranges contained in that cell’s formula.
  • If the argument is a range of cells, getCellPrecedents() returns some of the cell addresses and smaller ranges contained in that range (but not all of them). The exact result depends on the optimizations applied by the HyperFormula to the dependency graph, some of which are described in the section “Optimizations for large ranges”.

The returned array includes also named expression precedents. They are represented as cell references with sheet ID -1.

throws ExpectedValueOfTypeError if address is of wrong type

throws NoSheetWithIdError when the given sheet ID does not exist

example

const hfInstance = HyperFormula.buildFromArray( [ ['1', '=A1', '=A1+B1'] ] );
hfInstance.getCellPrecedents({ sheet: 0, col: 2, row: 0});
// returns [{ sheet: 0, col: 0, row: 0}, { sheet: 0, col: 1, row: 0}]

Parameters:

NameTypeDescription
addressSimpleCellAddress | SimpleCellRangeobject representation of an absolute address or range of addresses

Returns: (SimpleCellRange | SimpleCellAddress)[]


getNamedExpressionsFromFormula(formulaString: string): string[]

Defined in src/HyperFormula.ts:4254

Return a list of named expressions used by a formula.

throws ExpectedValueOfTypeError if any of its basic type arguments is of wrong type.

throws NotAFormulaError when the provided string is not a valid formula (i.e., doesn’t start with =).

example

const hfInstance = HyperFormula.buildEmpty();
// returns a list of named expressions used by a formula
// for this example, returns ['foo', 'bar']
const namedExpressions = hfInstance.getNamedExpressionsFromFormula('=foo+bar*2');

Parameters:

NameTypeDescription
formulaStringstringA formula in a proper format, starting with =.

Returns: string[]


normalizeFormula(formulaString: string): string

Defined in src/HyperFormula.ts:4187

Parses and then unparses a formula. Returns a normalized formula (e.g., restores the original capitalization of sheet names, function names, cell addresses, and named expressions).

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

throws NotAFormulaError when the provided string is not a valid formula, i.e., does not start with ”=”

example

const hfInstance = HyperFormula.buildFromArray([
['42'],
['50'],
]);
// returns '=Sheet1!$A$1+10'
const normalizedFormula = hfInstance.normalizeFormula('=SHEET1!$A$1+10');
// returns '=3*$A$1'
const normalizedFormula = hfInstance.normalizeFormula('=3*$a$1');

Parameters:

NameTypeDescription
formulaStringstringa formula in a proper format - it must start with ”=”

Returns: string


numberToDate(inputNumber: number): DateTime

Defined in src/HyperFormula.ts:4409

Interprets number as a date.

For more information, see the Date and time handling guide.

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

example

const hfInstance = HyperFormula.buildEmpty();
// pass the number of days since nullDate
// the method should return formatted date, for this example:
// {year: 2020, month: 1, day: 15}
const dateFromNumber = hfInstance.numberToDate(43845);

Parameters:

NameTypeDescription
inputNumbernumbernumber of days since nullDate, should be non-negative, fractions are ignored.

Returns: DateTime


numberToDateTime(inputNumber: number): DateTime

Defined in src/HyperFormula.ts:4383

Interprets number as a date + time.

For more information, see the Date and time handling guide.

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

example

const hfInstance = HyperFormula.buildEmpty();
// pass the number of days since nullDate
// the method should return formatted date and time, for this example:
// {year: 2020, month: 1, day: 15, hours: 2, minutes: 24, seconds: 0}
const dateTimeFromNumber = hfInstance.numberToDateTime(43845.1);

Parameters:

NameTypeDescription
inputNumbernumbernumber of days since nullDate, should be non-negative, fractions are interpreted as hours/minutes/seconds.

Returns: DateTime


numberToTime(inputNumber: number): DateTime

Defined in src/HyperFormula.ts:4434

Interprets number as a time (hours/minutes/seconds).

For more information, see the Date and time handling guide.

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

example

const hfInstance = HyperFormula.buildEmpty();
// pass a number to be interpreted as a time
// should return {hours: 26, minutes: 24} for this example
const timeFromNumber = hfInstance.numberToTime(1.1);

Parameters:

NameTypeDescription
inputNumbernumbertime in 24h units.

Returns: DateTime


simpleCellAddressFromString(cellAddress: string, contextSheetId: number): SimpleCellAddress | undefined

Defined in src/HyperFormula.ts:2888

Computes the simple (absolute) address of a cell address, based on its string representation.

  • If a sheet name is present in the string representation but is not present in the engine, returns undefined.
  • If no sheet name is present in the string representation, uses contextSheetId as a sheet id in the returned address.

For more information, see the Cell references guide.

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

example

const hfInstance = HyperFormula.buildEmpty();
hfInstance.addSheet('Sheet0'); //sheetId = 0
// returns { sheet: 42, col: 0, row: 0 }
const simpleCellAddress = hfInstance.simpleCellAddressFromString('A1', 42);
// returns { sheet: 0, col: 0, row: 5 }
const simpleCellAddress = hfInstance.simpleCellAddressFromString('Sheet0!A6', 42);
// returns { sheet: 0, col: 0, row: 5 }
const simpleCellAddress = hfInstance.simpleCellAddressFromString('Sheet0!$A$6', 42);
// returns 'undefined', as there's no 'Sheet 2' in the HyperFormula instance
const simpleCellAddress = hfInstance.simpleCellAddressFromString('Sheet2!A6', 42);

Parameters:

NameTypeDescription
cellAddressstringstring representation of cell address in A1 notation
contextSheetIdnumbersheet id used to construct the simple address in case of missing sheet name in cellAddress argument

Returns: SimpleCellAddress | undefined


simpleCellAddressToString(cellAddress: SimpleCellAddress, optionsOrContextSheetId: object | number): undefined | string

Defined in src/HyperFormula.ts:2957

Computes string representation of an absolute address in A1 notation. If cellAddress.sheet is not present in the engine, returns undefined.

For more information, see the Cell references guide.

throws ExpectedValueOfTypeError if its arguments are of wrong type

example

const hfInstance = HyperFormula.buildEmpty();
hfInstance.addSheet('Sheet0'); //sheetId = 0
const addr = { sheet: 0, col: 1, row: 1 };
// should return 'B2'
const A1Notation = hfInstance.simpleCellAddressToString(addr);
// should return 'B2'
const A1Notation = hfInstance.simpleCellAddressToString(addr, { includeSheetName: false });
// should return 'Sheet0!B2'
const A1Notation = hfInstance.simpleCellAddressToString(addr, { includeSheetName: true });
// should return 'B2' as context sheet id is the same as addr.sheet
const A1Notation = hfInstance.simpleCellAddressToString(addr, 0);
// should return 'Sheet0!B2' as context sheet id is different from addr.sheet
const A1Notation = hfInstance.simpleCellAddressToString(addr, 42);

Parameters:

NameTypeDefaultDescription
cellAddressSimpleCellAddress-object representation of an absolute address
optionsOrContextSheetIdobject | number{}options object or number used as context sheet id to construct the string address (see examples)

Returns: undefined | string


simpleCellRangeFromString(cellRange: string, contextSheetId: number): SimpleCellRange | undefined

Defined in src/HyperFormula.ts:2917

Computes simple (absolute) address of a cell range based on its string representation. If sheet name is present in string representation but not present in the engine, returns undefined.

For more information, see the Cell references guide.

throws NoSheetWithIdError when the given sheet ID does not exist

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

example

const hfInstance = HyperFormula.buildEmpty();
hfInstance.addSheet('Sheet0'); //sheetId = 0
// should return { start: { sheet: 0, col: 0, row: 0 }, end: { sheet: 0, col: 1, row: 0 } }
const simpleCellAddress = hfInstance.simpleCellRangeFromString('A1:A2', 0);

Parameters:

NameTypeDescription
cellRangestringstring representation of cell range in A1 notation
contextSheetIdnumbersheet id used to construct the simple address in case of missing sheet name in cellRange argument

Returns: SimpleCellRange | undefined


simpleCellRangeToString(cellRange: SimpleCellRange, optionsOrContextSheetId: object | number): string | undefined

Defined in src/HyperFormula.ts:3010

Computes string representation of an absolute range in A1 notation. Returns undefined if:

  • cellRange is not a valid range,
  • cellRange.start.sheet and cellRange.start.end are different,
  • cellRange.start.sheet is not present in the engine,
  • cellRange.start.end is not present in the engine.

Note: This method is useful only for cell ranges; does not work with column ranges and row ranges.

For more information, see the Cell references guide.

throws ExpectedValueOfTypeError if its arguments are of wrong type

example

const hfInstance = HyperFormula.buildEmpty();
hfInstance.addSheet('Sheet0'); //sheetId = 0
const range = { start: { sheet: 0, col: 1, row: 1 }, end: { sheet: 0, col: 2, row: 1 } };
// should return 'B2:C2'
const A1Notation = hfInstance.simpleCellRangeToString(range);
// should return 'B2:C2'
const A1Notation = hfInstance.simpleCellRangeToString(range, { includeSheetName: false });
// should return 'Sheet0!B2:C2'
const A1Notation = hfInstance.simpleCellRangeToString(range, { includeSheetName: true });
// should return 'B2:C2' as context sheet id is the same as range.start.sheet and range.end.sheet
const A1Notation = hfInstance.simpleCellRangeToString(range, 0);
// should return 'Sheet0!B2:C2' as context sheet id is different from range.start.sheet and range.end.sheet
const A1Notation = hfInstance.simpleCellRangeToString(range, 42);

Parameters:

NameTypeDefaultDescription
cellRangeSimpleCellRange-object representation of an absolute range
optionsOrContextSheetIdobject | number{}options object or number used as context sheet id to construct the string address (see examples)

Returns: string | undefined


validateFormula(formulaString: string): boolean

Defined in src/HyperFormula.ts:4288

Validates the formula. If the provided string starts with ”=” and is a parsable formula, the method returns true. The validation is purely grammatical: the method doesn’t verify if the formula can be calculated or not.

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

example

// checks if the given string is a valid formula, should return 'true' for this example
const isFormula = hfInstance.validateFormula('=SUM(1, 2)');

Parameters:

NameTypeDescription
formulaStringstringa formula in a proper format - it must start with ”=”

Returns: boolean


clearClipboard(): void

Defined in src/HyperFormula.ts:2361

Clears the clipboard content.

example

// clears the clipboard, isClipboardEmpty() should return true if called afterwards
hfInstance.clearClipboard();

The usage of the internal clipboard is described thoroughly in the Clipboard Operations guide.

Returns: void


copy(source: SimpleCellRange): CellValue[][]

Defined in src/HyperFormula.ts:2221

Stores a copy of the cell block in internal clipboard for the further paste. Returns the copied values for use in external clipboard.

For more information, see the Clipboard Operations guide.

throws NoSheetWithIdError when the given sheet ID does not exist

throws ExpectedValueOfTypeError if source is of wrong type

throws SheetsNotEqual if range provided has distinct sheet numbers for start and end

example

const hfInstance = HyperFormula.buildFromArray([
['1', '2'],
]);
// it copies [ [ 2 ] ]
const clipboardContent = hfInstance.copy({
start: { sheet: 0, col: 1, row: 0 },
end: { sheet: 0, col: 1, row: 0 },
});

The usage of the internal clipboard is described thoroughly in the Clipboard Operations guide.

Parameters:

NameTypeDescription
sourceSimpleCellRangerectangle range to copy

Returns: CellValue[][]


cut(source: SimpleCellRange): CellValue[][]

Defined in src/HyperFormula.ts:2261

Stores information of the cell block in internal clipboard for further paste. Calling paste right after this method is equivalent to call moveCells. Almost any CRUD operation called after this method will abort the cut operation. Returns the cut values for use in external clipboard.

For more information, see the Clipboard Operations guide.

throws ExpectedValueOfTypeError if source is of wrong type

throws SheetsNotEqual if range provided has distinct sheet numbers for start and end

throws NoSheetWithIdError when the given sheet ID does not exist

example

const hfInstance = HyperFormula.buildFromArray([
['1', '2'],
]);
// returns the values that were cut: [ [ 1 ] ]
const clipboardContent = hfInstance.cut({
start: { sheet: 0, col: 0, row: 0 },
end: { sheet: 0, col: 0, row: 0 },
});

The usage of the internal clipboard is described thoroughly in the Clipboard Operations guide.

Parameters:

NameTypeDescription
sourceSimpleCellRangerectangle range to cut

Returns: CellValue[][]


isClipboardEmpty(): boolean

Defined in src/HyperFormula.ts:2344

Returns information whether there is something in the clipboard.

example

const hfInstance = HyperFormula.buildFromArray([
['1', '2'],
]);
// copy desired content
const clipboardContent = hfInstance.copy({
start: { sheet: 0, col: 1, row: 0 },
end: { sheet: 0, col: 1, row: 0 },
});
// returns 'false', there is content in the clipboard
const isClipboardEmpty = hfInstance.isClipboardEmpty();

The usage of the internal clipboard is described thoroughly in the Clipboard Operations guide.

Returns: boolean


paste(targetLeftCorner: SimpleCellAddress): ExportedChange[]

Defined in src/HyperFormula.ts:2312

When called after copy it pastes copied values and formulas into a cell block. When called after cut it performs moveCells operation into the cell block. Does nothing if the clipboard is empty.

For more information, see the Clipboard Operations guide.

Returns an array of cells whose values changed as a result of this operation.

Note that this method may trigger dependency graph recalculation.

fires valuesUpdated if recalculation was triggered by this change

throws NoSheetWithIdError when the given sheet ID does not exist

throws EvaluationSuspendedError when the evaluation is suspended

throws SheetSizeLimitExceededError when performing this operation would result in sheet size limits exceeding

throws NothingToPasteError when clipboard is empty

throws TargetLocationHasArrayError when the selected target area has array inside

throws ExpectedValueOfTypeError if targetLeftCorner is of wrong type

example

const hfInstance = HyperFormula.buildFromArray([
['1', '2'],
]);
// [ [ 2 ] ] was copied
const clipboardContent = hfInstance.copy({
start: { sheet: 0, col: 1, row: 0 },
end: { sheet: 0, col: 1, row: 0 },
});
// returns a list of modified cells: their absolute addresses and new values
const changes = hfInstance.paste({ sheet: 0, col: 1, row: 0 });

The usage of the internal clipboard is described thoroughly in the Clipboard Operations guide.

Parameters:

NameTypeDescription
targetLeftCornerSimpleCellAddressupper left address of the target cell block

Returns: ExportedChange[]


clearRedoStack(): void

Defined in src/HyperFormula.ts:2391

Clears the redo stack in undoRedo history.

For more information, see the Undo-Redo guide.

example

const hfInstance = HyperFormula.buildFromArray([
['1', '2', '3'],
]);
// do an operation, for example remove columns
hfInstance.removeColumns(0, [0, 1]);
// undo the operation
hfInstance.undo();
// redo the operation
hfInstance.redo();
// clear the redo stack
hfInstance.clearRedoStack();

Returns: void


clearUndoStack(): void

Defined in src/HyperFormula.ts:2418

Clears the undo stack in undoRedo history.

For more information, see the Undo-Redo guide.

example

const hfInstance = HyperFormula.buildFromArray([
['1', '2', '3'],
]);
// do an operation, for example remove columns
hfInstance.removeColumns(0, [0, 1]);
// undo the operation
hfInstance.undo();
// clear the undo stack
hfInstance.clearUndoStack();

Returns: void


isThereSomethingToRedo(): boolean

Defined in src/HyperFormula.ts:1207

Checks if there is at least one operation that can be re-done.

For more information, see the Undo-Redo guide.

example

hfInstance.undo();
// when there is an action to redo, this returns 'true'
const isSomethingToRedo = hfInstance.isThereSomethingToRedo();

Returns: boolean


isThereSomethingToUndo(): boolean

Defined in src/HyperFormula.ts:1188

Checks if there is at least one operation that can be undone.

For more information, see the Undo-Redo guide.

example

const hfInstance = HyperFormula.buildFromArray([
['1'],
['2'],
['3'],
]);
// perform CRUD operation, for example remove the second row
hfInstance.removeRows(0, [1, 1]);
// should return 'true', it is possible to undo last operation
// which is removing rows in this example
const isSomethingToUndo = hfInstance.isThereSomethingToUndo();

Returns: boolean


redo(): ExportedChange[]

Defined in src/HyperFormula.ts:1160

Re-do recently undone operation.

For more information, see the Undo-Redo guide.

Returns an array of cells whose values changed as a result of this operation.

Note that this method may trigger dependency graph recalculation.

fires valuesUpdated if recalculation was triggered by this change

throws NoOperationToRedoError when there is no operation running that can be re-done

example

const hfInstance = HyperFormula.buildFromArray([
['1'],
['2'],
['3'],
]);
// perform CRUD operation, for example remove the second row
hfInstance.removeRows(0, [1, 1]);
// undo the operation, it should return previous values: [['1'], ['2'], ['3']]
hfInstance.undo();
// do a redo, it should return the values after removing the second row: [['1'], ['3']]
const changes = hfInstance.redo();

Returns: ExportedChange[]


undo(): ExportedChange[]

Defined in src/HyperFormula.ts:1122

Undo the previous operation.

For more information, see the Undo-Redo guide.

Returns an array of cells whose values changed as a result of this operation.

Note that this method may trigger dependency graph recalculation.

fires valuesUpdated if recalculation was triggered by this change

throws NoOperationToUndoError when there is no operation running that can be undone

example

const hfInstance = HyperFormula.buildFromArray([
['1', '2'],
['3', ''],
]);
// perform CRUD operation, for example remove the second row
hfInstance.removeRows(0, [1, 1]);
// undo the operation, it should return the changes
const changes = hfInstance.undo();

Returns: ExportedChange[]


batch(batchOperations: function): ExportedChange[]

Defined in src/HyperFormula.ts:3578

Runs the provided callback as a single batch operation and returns the changed cells.

Returns an array of cells whose values changed as a result of all batched operations.

Note that this method may trigger dependency graph recalculation.

fires valuesUpdated if recalculation was triggered by this change

fires evaluationSuspended always

fires evaluationResumed after the recomputation of necessary values

example

const hfInstance = HyperFormula.buildFromSheets({
MySheet1: [ ['1'] ],
MySheet2: [ ['10'] ],
});
// multiple operations in a single callback will trigger evaluation only once
// and only one set of changes is returned as a combined result of all
// the operations that were triggered within the callback
const changes = hfInstance.batch(() => {
hfInstance.setCellContents({ col: 3, row: 0, sheet: 0 }, [['=B1']]);
hfInstance.setCellContents({ col: 4, row: 0, sheet: 0 }, [['=A1']]);
});

Parameters:

batchOperations: function

a function with operations to be performed

▸ (): void

Returns: ExportedChange[]


isEvaluationSuspended(): boolean

Defined in src/HyperFormula.ts:3687

Checks if the dependency graph recalculation process is suspended or not.

example

const hfInstance = HyperFormula.buildEmpty();
// suspend the evaluation
hfInstance.suspendEvaluation();
// between suspendEvaluation() and resumeEvaluation()
// or inside batch() callback it will return 'true', otherwise 'false'
const isEvaluationSuspended = hfInstance.isEvaluationSuspended();
const changes = hfInstance.resumeEvaluation();

Returns: boolean


resumeEvaluation(): ExportedChange[]

Defined in src/HyperFormula.ts:3661

Resumes the dependency graph recalculation that was suspended with suspendEvaluation. It also triggers the recalculation and returns an array of cells whose values changed as a result of all batched operations.

fires valuesUpdated if recalculation was triggered by this change

fires evaluationResumed after the recomputation of necessary values

example

const hfInstance = HyperFormula.buildFromSheets({
MySheet1: [ ['1'] ],
MySheet2: [ ['10'] ],
});
// similar to batch() but operations are not within a callback,
// one method suspends the recalculation
// the second will resume calculations and return the changes
// first, suspend the evaluation
hfInstance.suspendEvaluation();
// perform operations
hfInstance.setCellContents({ col: 3, row: 0, sheet: 0 }, [['=B1']]);
hfInstance.setSheetContent(1, [['50'], ['60']]);
// resume the evaluation
const changes = hfInstance.resumeEvaluation();

Returns: ExportedChange[]


suspendEvaluation(): void

Defined in src/HyperFormula.ts:3625

Suspends the dependency graph recalculation to start a batch operation. It allows optimizing the performance. With this method, multiple CRUD operations can be done without triggering recalculation after every operation. Suspending evaluation should result in an overall faster calculation compared to recalculating after each operation separately. To resume the evaluation use resumeEvaluation.

fires evaluationSuspended always

example

const hfInstance = HyperFormula.buildFromSheets({
MySheet1: [ ['1'] ],
MySheet2: [ ['10'] ],
});
// similar to batch() but operations are not within a callback,
// one method suspends the recalculation
// the second will resume calculations and return the changes
// suspend the evaluation with this method
hfInstance.suspendEvaluation();
// perform operations
hfInstance.setCellContents({ col: 3, row: 0, sheet: 0 }, [['=B1']]);
hfInstance.setSheetContent(1, [['50'], ['60']]);
// use resumeEvaluation to resume
const changes = hfInstance.resumeEvaluation();

Returns: void


offEvent›(event: Event, listener: Listeners[Event]): void

Defined in src/HyperFormula.ts:4520

Unsubscribes from an event or from all events. For the list of all available events, see Listeners.

example

const hfInstance = HyperFormula.buildEmpty();
// define a simple function to be called upon emitting an event
const handler = ( ) => { console.log('baz') }
// subscribe to a 'sheetAdded', pass the handler
hfInstance.on('sheetAdded', handler);
// add a sheet to trigger an event,
// console should print 'baz' each time a sheet is added
hfInstance.addSheet('FooBar');
// unsubscribe from a 'sheetAdded'
hfInstance.off('sheetAdded', handler);
// add a sheet, the console should not print anything
hfInstance.addSheet('FooBaz');

Type parameters:

Event: keyof Listeners

Parameters:

NameTypeDescription
eventEventthe name of the event to subscribe to
listenerListeners[Event]to be called when event is emitted

Returns: void


onEvent›(event: Event, listener: Listeners[Event]): void

Defined in src/HyperFormula.ts:4460

Subscribes to an event. For the list of all available events, see Listeners.

example

const hfInstance = HyperFormula.buildEmpty();
// subscribe to a 'sheetAdded', pass a simple handler
hfInstance.on('sheetAdded', ( ) => { console.log('foo') });
// add a sheet to trigger an event,
// console should print 'foo' after each time sheet is added in this example
hfInstance.addSheet('FooBar');

Type parameters:

Event: keyof Listeners

Parameters:

NameTypeDescription
eventEventthe name of the event to subscribe to
listenerListeners[Event]to be called when event is emitted

Returns: void


onceEvent›(event: Event, listener: Listeners[Event]): void

Defined in src/HyperFormula.ts:4486

Subscribes to an event once. For the list of all available events, see Listeners.

example

const hfInstance = HyperFormula.buildEmpty();
// subscribe to a 'sheetAdded', pass a simple handler
hfInstance.once('sheetAdded', ( ) => { console.log('foo') });
// call addSheet twice,
// console should print 'foo' only once when the sheet is added in this example
hfInstance.addSheet('FooBar');
hfInstance.addSheet('FooBaz');

Type parameters:

Event: keyof Listeners

Parameters:

NameTypeDescription
eventEventthe name of the event to subscribe to
listenerListeners[Event]to be called when event is emitted

Returns: void


getAllFunctionPlugins(): FunctionPluginDefinition[]

Defined in src/HyperFormula.ts:4357

Returns classes of all plugins registered in this instance of HyperFormula

example

const hfInstance = HyperFormula.buildEmpty();
// return classes of all plugins registered, assign to a variable
const allNames = hfInstance.getAllFunctionPlugins();

Returns: FunctionPluginDefinition[]


getFunctionPlugin(functionId: string): FunctionPluginDefinition | undefined

Defined in src/HyperFormula.ts:4339

Returns class of a plugin used by function with given id

For more information, see the Custom functions guide.

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

example

// import your own plugin
import { MyExamplePlugin } from './file_with_your_plugin';
const hfInstance = HyperFormula.buildEmpty();
// register a plugin
HyperFormula.registerFunctionPlugin(MyExamplePlugin);
// get the plugin
const myPlugin = hfInstance.getFunctionPlugin('EXAMPLE');

Parameters:

NameTypeDescription
functionIdstringid of a function, e.g., ‘SUMIF’

Returns: FunctionPluginDefinition | undefined


getRegisteredFunctionNames(): string[]

Defined in src/HyperFormula.ts:4309

Returns translated names of all functions registered in this instance of HyperFormula according to the language set in the configuration

example

const hfInstance = HyperFormula.buildEmpty();
// return translated names of all functions, assign to a variable
const allNames = hfInstance.getRegisteredFunctionNames();

Returns: string[]


getAllFunctionPlugins(): FunctionPluginDefinition[]

Defined in src/HyperFormula.ts:648

Returns classes of all plugins registered in HyperFormula.

example

// return classes of all plugins
const allClasses = HyperFormula.getAllFunctionPlugins();

Returns: FunctionPluginDefinition[]


getFunctionPlugin(functionId: string): FunctionPluginDefinition | undefined

Defined in src/HyperFormula.ts:632

Returns class of a plugin used by function with given id

For more information, see the Custom functions guide.

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

example

// import your own plugin
import { MyExamplePlugin } from './file_with_your_plugin';
// register a plugin
HyperFormula.registerFunctionPlugin(MyExamplePlugin);
// return the class of a given plugin
const myFunctionClass = HyperFormula.getFunctionPlugin('EXAMPLE');

Parameters:

NameTypeDescription
functionIdstringid of a function, e.g., ‘SUMIF’

Returns: FunctionPluginDefinition | undefined


getLanguage(languageCode: string): TranslationPackage

Defined in src/HyperFormula.ts:371

Returns registered language from its code string.

For more information, see the Localizing functions guide.

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

throws LanguageNotRegisteredError when trying to retrieve not registered language

example

// return registered language
const language = HyperFormula.getLanguage('enGB');

Parameters:

NameTypeDescription
languageCodestringcode string of the translation package

Returns: TranslationPackage


getRegisteredFunctionNames(code: string): string[]

Defined in src/HyperFormula.ts:602

Returns translated names of all registered functions for a given language

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

example

// return a list of function names registered for enGB
const allNames = HyperFormula.getRegisteredFunctionNames('enGB');

Parameters:

NameTypeDescription
codestringlanguage code

Returns: string[]


getRegisteredLanguagesCodes(): string[]

Defined in src/HyperFormula.ts:452

Returns all registered languages codes.

example

// should return all registered language codes: ['enGB', 'plPL']
const registeredLanguages = HyperFormula.getRegisteredLanguagesCodes();

Returns: string[]


registerFunction(functionId: string, plugin: FunctionPluginDefinition, translations?: FunctionTranslationsPackage): void

Defined in src/HyperFormula.ts:536

Registers a function with a given id if such exists in a plugin.

For more information, see the Custom functions guide.

Note: This method does not affect the existing HyperFormula instances.

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

throws FunctionPluginValidationError when function with a given id does not exist in plugin or plugin class definition is not consistent with metadata

throws ProtectedFunctionTranslationError when trying to register translation for protected function

example

// import your own plugin
import { MyExamplePlugin } from './file_with_your_plugin';
// register a function
HyperFormula.registerFunction('EXAMPLE', MyExamplePlugin);

Parameters:

NameTypeDescription
functionIdstringfunction id, e.g., ‘SUMIF’
pluginFunctionPluginDefinitionplugin class
translations?FunctionTranslationsPackagetranslations for the function name

Returns: void


registerFunctionPlugin(plugin: FunctionPluginDefinition, translations?: FunctionTranslationsPackage): void

Defined in src/HyperFormula.ts:482

Registers all functions in a given plugin with optional translations.

For more information, see the Custom functions guide.

Note: FunctionPlugins must be registered prior to the creation of HyperFormula instances in which they are used. HyperFormula instances created prior to the registration of a FunctionPlugin are unable to access the FunctionPlugin. Registering a FunctionPlugin with [[custom-functions]] requires the translations parameter.

throws FunctionPluginValidationError when plugin class definition is not consistent with metadata

throws ProtectedFunctionTranslationError when trying to register translation for protected function

example

// import your own plugin
import { MyExamplePlugin } from './file_with_your_plugin';
// register the plugin
HyperFormula.registerFunctionPlugin(MyExamplePlugin);

Parameters:

NameTypeDescription
pluginFunctionPluginDefinitionplugin class
translations?FunctionTranslationsPackageoptional package of function names translations

Returns: void


registerLanguage(languageCode: string, languagePackage: RawTranslationPackage): void

Defined in src/HyperFormula.ts:402

Registers language under given code string.

For more information, see the Localizing functions guide.

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

throws ProtectedFunctionTranslationError when trying to register translation for protected function

throws LanguageAlreadyRegisteredError when given language is already registered

example

// return registered language
HyperFormula.registerLanguage('enUS', enUS);
const engine = HyperFormula.buildEmpty({language: 'enUS'});

Parameters:

NameTypeDescription
languageCodestringcode string of the translation package
languagePackageRawTranslationPackagetranslation package to be registered

Returns: void


unregisterAllFunctions(): void

Defined in src/HyperFormula.ts:583

Clears function registry.

Note: This method does not affect the existing HyperFormula instances.

example

HyperFormula.unregisterAllFunctions();

Returns: void


unregisterFunction(functionId: string): void

Defined in src/HyperFormula.ts:566

Unregisters a function with a given id.

For more information, see the Custom functions guide.

Note: This method does not affect the existing HyperFormula instances.

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

example

// import your own plugin
import { MyExamplePlugin } from './file_with_your_plugin';
// register a function
HyperFormula.registerFunction('EXAMPLE', MyExamplePlugin);
// unregister a function
HyperFormula.unregisterFunction('EXAMPLE');

Parameters:

NameTypeDescription
functionIdstringfunction id, e.g., ‘SUMIF’

Returns: void


unregisterFunctionPlugin(plugin: FunctionPluginDefinition): void

Defined in src/HyperFormula.ts:506

Unregisters all functions defined in given plugin.

For more information, see the Custom functions guide.

Note: This method does not affect the existing HyperFormula instances.

example

// get the class of a plugin
const registeredPluginClass = HyperFormula.getFunctionPlugin('EXAMPLE');
// unregister all functions defined in a plugin of ID 'EXAMPLE'
HyperFormula.unregisterFunctionPlugin(registeredPluginClass);

Parameters:

NameTypeDescription
pluginFunctionPluginDefinitionplugin class

Returns: void


unregisterLanguage(languageCode: string): void

Defined in src/HyperFormula.ts:432

Unregisters language that is registered under given code string.

For more information, see the Localizing functions guide.

throws ExpectedValueOfTypeError if any of its basic type argument is of wrong type

throws LanguageNotRegisteredError when given language is not registered

example

// register the language for the instance
HyperFormula.registerLanguage('plPL', plPL);
// unregister plPL
HyperFormula.unregisterLanguage('plPL');

Parameters:

NameTypeDescription
languageCodestringcode string of the translation package

Returns: void