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

padStart

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

Quick reference

ItemDetails
FunctionpadStart()
CategoryLatest reference
SyntaxpadStart(text, length, padText)
PurposePad text on the left to a target length
Recommended alternativerepeat() + substring() manual concatenation

Official example of the padStart function in the Notion formula editor

Examples and notes

padStart(format(prop("Number")), 4, "0")

Example result: 7 -> 0007.

Dot-chain style:

format(prop("Number")).padStart(4, "0")

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