Type
Text
Get Word Count
length(
replaceAll(
prop("Combined text"),
"[^ ]",
""
)
) + 1
Note: Contractions (words like "it's," "aren't," and "would've"), which are technically two words each, will be counted as one by this formula.
length(
replaceAll(
prop("Combined text"),
"[^ ]",
""
)
) + 1
Note: Contractions (words like "it's," "aren't," and "would've"), which are technically two words each, will be counted as one by this formula.