BREAK
This is a premium feature.
Immediately stops traversing a JSON object via JSON.PROCESS()
.
Syntax
=BREAK()
Arguments
None
Return
TRUE or an error value.
Examples
Traverse only first key-value pair of following JSON
A2: =CONCAT(A2, A4, "-")
A3: =CONCAT(A3, B3, "-")
A4: =BREAK()
A5: =JSON.PROCESS(JSON(A1), B3, A2:A4)
Formula | Result | Comment |
---|---|---|
| TRUE | Cells A2 and A3 contain only first key-value pair, namely -name- and -foo- respectively. |