So that the Notion word count will always show on the page as one of the properties, without the need to check with the dots in the top right corner
Does any formula have this effect?
Connect
Notion Answers
Help between Notion users
Register & Ask
It's free & easy
Get answers
Answers, votes & comments
Vote and select answers
Receive points, vote and give the solution
Question
2 Answers
The formula to make it work in a database is possible with Properties but not text on the page.
length(prop("thePropYouWant") will give you a letter count for a Property. But if you want to count words, you can count the spaces. For example :
if(length(prop("Name")) > 0, length(replaceAll(prop("Name"), "[^ ]", "")) + 1, 0)
which uses every occurence of space
Related questions
- Is there a way to view the wordcount of an entire workspace, including all sub-pages and tables etc?
- Syntax error in table formula for word count
- It is there any way can link content block to database's cell? or sync statistics like column's sum to a block?
- Can you count how many times a date property is updated with a formula?
- is there a way to calculate (use a formula) for the Title property
Without Answer
-
- 13
- 0
- 12 hours ago
-
- 20
- 1
- 16 hours ago
-
- 56
- 1
- 5 days ago
-
- 49
- 1
- Mar 16
-
- 95
- 1
- Mar 14
-
- 99
- 0
- Mar 8
-
- 56
- 0
- Mar 6
-
- 125
- 0
- Mar 4
- see all
Exclusive for Notion Answers Users
- • Dynamic Calendar Icon | Info | Download
- Add yours here
Recent Activities
scarmonies asked 12 hours ago
Can I fix/make "sticky" one column of a database s…prabhakaratnumici asked 12 hours ago
How to create a page with another page as parent u…joga commented 2 days ago
how to set up size for notion embed block with Api…Vira asked 5 days ago
How to create an automatic deadline for a task?polle commented 6 days ago
Use a Relationship with a subset
...