Skip to main content
Version: Streamsheets 3.0

EXECUTE

Triggers the recalculation of another Streamsheet. The executed Sheet will only be executed if Streamsheet settings of executed Sheet allow execution. Calculate Streamsheet "On Execute".

Syntax

=EXECUTE(Streamsheet, [Repeat], [JSON], [Delay])

Arguments

NameTypeDescription
StreamsheetSheetName of Streamsheet to trigger.

Options:
Repeat (optional)NumberNumber of repetitions. If larger than 1, the execute function will be executed multiple times

Default value: 1
JSON (optional)JSONJSON to use as message data to process, when executing.
Delay (optional)NumberThe delay in seconds before repeat next execute.

Return

TypeDescription
BooleanNOTE: if the execution of the triggered StreamSheet is stopped via the RETURN function, its result is returned instead.

Examples

FormulaResultComment
=EXECUTE(Sheet2!)
TRUETriggers the calculation of a second Streamsheet, called "Sheet2".