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
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
- How to check for word count in columns of Notion Database? Formula found here not working
- 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?
- Is there any thorough documentation of the formula properties and values?
Without Answer
-
- 99
- 0
- 1 day ago
-
- 1148
- 1
- Apr 4
-
- 330
- 1
- Mar 20
-
- 373
- 0
- Mar 14
-
- 547
- 0
- Mar 8
-
- 296
- 0
- Feb 21
-
- 276
- 1
- Feb 14
-
- 368
- 0
- Feb 13
- see all
Recent Activities
joeythelemur asked 1 day ago
How can I better organize a LOT of properties?discossstick asked Apr 4
settings of font colour changed?polle answered Apr 2
Where can we send feature suggestion to Notion so …
...