Red Gregory

View Original

Creating Acronyms In Notion From Text Properties

The Formula w/o Checkbox

replaceAll(prop("Name"), "[abcdefghigklmnopqrstuvwxyz]", "")

The Breakdown

replaceAll(prop("Name"), → Replace all characters in Name property ...

"[abcdefghigklmnopqrstuvwxyz]", → that consist of lowercase letters ...

"") → with empty space.

The Formula w/ Checkbox

(prop("Acronym?") == true) ? replaceAll(prop("Name"), "[abcdefghigklmnopqrstuvwxyz]", "") : "" → if Acronym property is true, then follow above formula.

VIEW EXAMPLE


See this gallery in the original post