We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
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 |
| AAACCC | 3 |
| AAMTHN | 2 |
| AAMTHN | 2 |
| AATSSH | 1 |
| AATSYC | 1 |
| AAYSDN | 2 |
| AAYSDN | 2 |
You can use this
= List.Count(List.Select(List.Buffer(Source[Text]), (x)=>x=[Text]))
Thanks, it works for me.
Hi, @Vijay_A_Verma x =[Text] is not going to work. Imho better idea is to add one extra step to buffer Source[Text] first and then (in the scope of Table.AddColumn function) this should look like this
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WcnR0dHZ2VorVwc30DfHww2SGBAd7wJmRMLWRwS5+KMxYAA==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Text = _t]),
text_column = List.Buffer(Source[Text]),
f =
Table.AddColumn(
Source,
"Custom Column",
each List.Count(List.Select(text_column, (x)=>x=[Text]))
)
in
f
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 6 | |
| 4 | |
| 3 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 11 | |
| 10 | |
| 7 | |
| 7 | |
| 6 |