The remainder (%
) operator allows you to get the remainder after dividing the first operand with the second operand.
Code language: JavaScript (javascript)
Notion provides a mod()
function as well as the %
operator (I’ll just reference %
for the rest of this article).
Somewhat confusingly, these do not return a true modulus value; they return a remainder (see: Remainder or Modulus? below).
As %
and mod()
output a remainder, their output values will take the sign (+/-
) of the dividend.
For reference, the dividend is the number being divided by the divisor, which produces the quotient:
\(\frac {dividend}{divisor} = quotient\)Example Formulas
Code language: JavaScript (javascript)
Negative Divisors
As of the Formulas 2.0 update in 2023, if the divisor is negative, both mod()
and %
will now treat it as a negative integer natively. This is a change from the pre-Formulas 2.0 behavior.
Code language: JavaScript (javascript)
Remainder or Modulus?
Just as in JavaScript, Notion’s %
operator calculates the remainder of two numbers, not the modulus. Confusingly, the mod()
function does this as well, despite its name.
The remainder and modulus of two numbers will be identical when both the dividend and divisor have the same sign (+/-
). If their signs differ, however, the modulus will differ from the remainder.
These two articles explain this well:
- Mod and Remainder are Not the Same (Big Machine)
- Remainder operator vs. modulo operator (with JavaScript code) (2Ality)
You can prove this using WolframAlpha:
-19 mod 12
results in5
QuotientRemainder[-19,12]
results in-7


To calculate a true modulus in Notion, use ((x % y) + y) % y
instead:
Code language: JavaScript (javascript)
I recommend reading Dr. Axel Rauschmayer’s Remainder Operator vs. Modulo Operator article to fully understand this, but here’s a summary.
To find a remainder, the formula is:
\(remainder = dividend – divisor * quotient\)In JavaScript, the %
operator accomplishes this using the following function:
Code language: JavaScript (javascript)
The Math.trunc() function simply chops all of the decimals off of a number and returns only what was left of the decimal point. In more precise terms, it rounds a number towards zero, no matter how how the decimal point.
Code language: JavaScript (javascript)
To put it another way, Math.trunc() acts like Math.floor() when its argument is positive, and acts like Math.ceil() when its argument is negative. For reference:
Math.ceil()
rounds towards positive infinityMath.floor()
rounds towards negative infinity
Note: The trunc()
function doesn’t exist in Notion’s formula editor, but you can create it with: (prop("Num") >= 0) ? floor(prop("Num")) : ceil(prop("Num"))
The formula for finding a modulus is the same, with one major difference: it uses the floor()
function instead of trunc()
.
Code language: JavaScript (javascript)
When the dividend and divisor have the same sign, the results from both formulas will be the same.
But when they are opposite, these formulas return different results.
This happens because trunc()
will always return an answer one integer greater than floor()
will when both have the same negative integer as their argument.
Code language: JavaScript (javascript)
The difference causes different results in the overall modulus/remainder functions.
For fun, here’s how you could manually create remainder and modulus functions in Notion without using mod()
. Note how complicated the remainder code is due to Notion’s lack of a trunc()
function!
Code language: JavaScript (javascript)
Example Database
This example database shows the differing outputs of remainder and true modulus expressions.

View and Duplicate Database

You can check these results here:

“Remainder” Property Formula
Code language: JavaScript (javascript)
“Modulus” Property Formula
Code language: JavaScript (javascript)
Instead of using hard-coded numbers, I’ve called in each property using the prop()
function.