Forum Discussion
prashantg364
3 years agoHelper II
cutom column
I want to add a custom column in the power query editor to get output for the count of rows of the "Text" column. Example as shown below... Text Custom column AAACCC 3 AAACCC 3 A...
Vijay_A_Verma
3 years agoMost Valuable Professional
You can use this
= List.Count(List.Select(List.Buffer(Source[Text]), (x)=>x=[Text]))prashantg364
3 years agoHelper II
Thanks, it works for me.