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

join

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

Quick reference

ItemDetails
Functionjoin()
CategoryLists
Syntaxjoin(list, separator)
PurposeConvert a list to text
Return valueText

Official example of the join function in the Notion formula editor

Examples and notes

prop("Tags").join("、")
split(prop("Keyword"), ",")

Clean comma-separated tags:

split(prop("Keyword"), ",").map(current.trim()).unique().join("、")

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