Errors

We all make mistakes. Thankfully Notion's formula editor is very good at letting 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

A valid character has been added and an expression is expected after it.

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