Skip to main content
FLO.W 思流Notion Formulas
Function Index

All Functions

Browse Notion formula functions by category. Every function has its own quick reference page.

Browse by category

Full function index

Logic and conditions

FunctionPurposeReturn value or alternative
if()Single-condition branchingAny type
ifs()Multi-condition branchingAny type
empty()Check whether a value is emptyBoolean
equal()Check equality, same as ==Boolean
unequal()Check inequality, same as !=Boolean

Text

FunctionPurposeReturn value or alternative
length()Count text characters or list itemsNumber
substring()Extract part of a text valueText
contains()Check whether text contains specific contentBoolean
replace()Replace the first matchText
replaceAll()Replace all matchesText
lower()Convert to lowercaseText
upper()Convert to uppercaseText
repeat()Repeat textText
trim()Remove leading and trailing whitespaceText
link()Create a clickable linkText
style()Add text stylingText
unstyle()Remove text stylingText
format()Convert to textText
test()Test a regular expressionBoolean
match()Match a regular expression and return all matchesList

Number and math

FunctionPurposeReturn value or alternative
add()Add valuesNumber
subtract()Subtract valuesNumber
multiply()Multiply valuesNumber
divide()Divide valuesNumber
mod()Return the remainderNumber
pow()Raise to a powerNumber
abs()Absolute valueNumber
round()Round a numberNumber
ceil()Round upNumber
floor()Round downNumber
sqrt()Square rootNumber
cbrt()Cube rootNumber
exp()e raised to a powerNumber
ln()Natural logarithmNumber
log10()Base-10 logarithmNumber
log2()Base-2 logarithmNumber
sign()Number signNumber
min()Minimum valueNumber
max()Maximum valueNumber
sum()Sum valuesNumber
mean()Average valueNumber
median()Median valueNumber
toNumber()Convert to a numberNumber
pi()PiNumber
e()Euler's number eNumber

Date and time

FunctionPurposeReturn value or alternative
now()Current date and timeDate
today()Current dateDate
minute()MinuteNumber
hour()HourNumber
day()Day of the week, 1 = Monday and 7 = SundayNumber
date()Day of the monthNumber
week()ISO week numberNumber
month()MonthNumber
year()YearNumber
dateAdd()Add timeDate
dateSubtract()Subtract timeDate
dateBetween()Difference between two datesNumber
dateRange()Create a date rangeDate range
dateStart()Start time of a date rangeDate
dateEnd()End time of a date rangeDate
timestamp()Convert to a Unix millisecond timestampNumber
fromTimestamp()Convert a millisecond timestamp to a dateDate
formatDate()Format a dateText
parseDate()Parse ISO 8601 date textDate

Lists

FunctionPurposeReturn value or alternative
at()Get the item at a specific positionAny type
first()First itemAny type
last()Last itemAny type
slice()Slice a listList
concat()Merge listsList
sort()Sort a listList
reverse()Reverse a listList
join()Convert a list to textText
split()Split text into a listList
unique()Remove duplicatesList
includes()Check whether a list contains a valueBoolean
find()Find the first matching itemAny type
findIndex()Find the position of the first matching itemNumber
filter()Filter a listList
some()Check whether at least one item matchesBoolean
every()Check whether every item matchesBoolean
map()Map a listList
flat()Flatten nested listsList

People, pages, and variables

FunctionPurposeReturn value or alternative
name()Get a person's nameText
email()Get a person's emailText
id()Get the current page ID or a specified page IDText
let()Define one variableExpression result
lets()Define multiple variablesExpression result

Latest references

FunctionPurposeReturn value or alternative
padStart()Pad text on the left to a target lengthManually combine repeat() and substring()
padEnd()Pad text on the right to a target lengthManually combine repeat() and substring()
count()Count list items or matching itemslength(list) or filter(...).length()
formatNumber()Format a number as textManually combine format(round(...))
splice()Delete or insert list items and return a new listslice() + concat()

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

Last updated on