Forum Discussion
Anonymous
5 years agoNot applicable
Get no of text string in Column
Hi, I have a column that contains some text, and I want to find the no of a text string in it. Eg
- 5 years ago
You can add a custom column in the query editor with
= List.Count(Text.Split([Column], " "))
Pat
mahoneypat
Microsoft Employee
5 years agoYou can add a custom column in the query editor with
= List.Count(Text.Split([Column], " "))
Pat