LENGTH + SUBSTITUTE for Word Count

I am trying to count words in a cell using the LENGTH and SUBSTITUTE formula but it doesn’t seem to want to recognize the difference between " " and “”. This formula only works if if can replace the spaces since that is what it counts. Any ideas of how to get that to work?

Length(thisRow.Notes)-Length(Substitute(thisRow.Notes, " “,”"))+1

Thanks

@Tim_Sherrod

I use @Murray_Adcock’s regex for word count, discussed here: Word Count - Word Processing Features

Works perfectly. Thanks so much.

1 Like