Formulas  /  More

Errors

We all make mis­takes. Thank­ful­ly Notion’s for­mu­la edi­tor is very good at let­ting you know when you make them.

Below is a list of common errors you may run into when creating formulas. Click on the spanner icon to show the fixed version!

Invalid character

@"Lorem""Lorem"
=
Invalid character "@". [0,1]
Lorem

Expression expected

10 * (10 * (2 + 4)
=
Expression expected. [5,6]
60

Variable is not defined

lorem.length()let(
    lorem, "Ipsum", 
    lorem.length()
)
=
lorem is not defined. [0,5]
5

Property token or function expected

"Lorem"."Lorem".length()
=
Property token or function expected. [7,8]
5