Skip to main content
Version: Streamsheets 3.0

PHASE.SET

Puts the Text into the target cell, if the condition is true.

Syntax

=PHASE.SET(Condition, Text, TargetCell, [OverwriteFormula])

Arguments

NameTypeDescription
ConditionFormulaCondition to check for action.
TextStringText to copy to the target cell, if condition equals TRUE.
TargetCellCellCell to put text into.
OverwriteFormula (optional)BooleanSet to TRUE will overwrite cell formula.

Default value: FALSE

Return

TypeDescription
BooleanDepends on condition. TRUE or FALSE

Examples

FormulaResultComment
=PHASE.SET(2>1, "Test", B1)
TRUEWill put text "Test" in cell B1, as 2 is always larger than 1.
=PHASE.SET(2>1, "Test", B1, TRUE)
TRUESame as before, but overwrites possible cell formula so that "Test" is returned on subsequent App steps