Skip to main content
FLO.W 思流Notion Formulas
Back to function index

splice

A quick reference for the Notion splice function, including syntax, purpose, return value, and examples.

Quick reference

ItemDetails
Functionsplice()
CategoryLatest reference
Syntaxsplice(list, start, deleteCount?, ...items)
PurposeDelete or insert list items and return a new list
Recommended alternativeslice() + concat()

Official example of the splice function in the Notion formula editor

Examples and notes

splice(["A", "B", "C"], 1, 1)

Example result: ["A", "C"].

Insert an item:

splice(["A", "C"], 1, 0, "B")

Example result: ["A", "B", "C"].

Alternative:

concat(slice(["A", "B", "C"], 0, 1), slice(["A", "B", "C"], 2))

To use these formulas directly in task reminders, project progress, note heatmaps, and reports, continue with FLO.W Notion Template.

Back to function index

Last updated on