round
Learn how to use the round function in Notion formulas.
The
round()
function rounds its argument to the nearest integer (whole number).1
round(number)
The exact midpoint between two whole numbers will round up towards positive infinity, not “away from zero”.
For example:
round(-4.5)
will round up to 4
.1
round(4.5) // Output: 5
2
3
round(4.49) // Output: 4
4
5
round(-4.49) // Output: -4
6
7
round(-4.5) // Output: -4
8
9
round(-4.51) // Output: -5
The
round()
function doesn’t accept additional arguments, so it can’t natively round a number to a specific decimal place.However, you can accomplish this using the following formula:
// Round to two decimal places
round([number]*100)/100
// Round to three decimal places
round([number]*1000)/1000
The number of zeroes corresponds to the number of decimal places to which your number will be rounded.
round(9.24551*10)/10 // Output: 9.2
round(4.158015*100)/100 // Output: 4.16
round(5145.018394*10000)/10000 // Output: 5145.0184
The example database below contains a formula that rounds the input number to several different decimal places.

1
// Compressed
2
"One Decimal: " + format(round(prop("Number") * 10) / 10) + "\n Two Decimals: " + format(round(prop("Number") * 100) / 100) + "\n Three Decimals: " + format(round(prop("Number") * 1000) / 1000) + "\n Four Decimals: " + format(round(prop("Number") * 10000) / 10000) + "\n Five Decimals: " + format(round(prop("Number") * 100000) / 100000)
3
4
// Expanded
5
"One Decimal: " + format(round(prop("Number") * 10) / 10) +
6
"\n Two Decimals: " + format(round(prop("Number") * 100) / 100) +
7
"\n Three Decimals: " + format(round(prop("Number") * 1000) / 1000) +
8
"\n Four Decimals: " + format(round(prop("Number") * 10000) / 10000) +
9
"\n Five Decimals: " + format(round(prop("Number") * 100000) / 100000)
This formula demonstrates decimal-rounding to five different places.
Note how
\n
allows us to create a new line in the formula output.
My name is Thomas Frank, and I'm a Notion-certified writer, YouTuber, and template creator. I've been using Notion since 2018 to organize my personal life and to run my business and YouTube channel. In addition to this formula reference, I've created a free Notion course for beginners and several productivity-focused Notion templates. If you'd like to connect, follow me on Twitter.

Last modified 4mo ago