Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Dear Friends,
I want to calculate counts of values available in multiple fields like below -
for User A , Value is showing only in Acre1 field so count will be 1 and for User B, values are showing in 3 field
| User | Acre1 | Acre2 | Acre3 | Acre4 | Acre5 | Count |
| A | 3 | 1 | ||||
| B | 2 | 0 | 1 | 3 | ||
| C | 1 | 1 | 6 | 2 | 2 | 5 |
| D | 0 | 1 | ||||
| E | 7 | 6 | 2 | |||
| F | 6 | 8 | 5 | 3 |
Solved! Go to Solution.
You're welcome @Anonymous
You're supposed to mark the actual answer as the solution, not your own reply 🙂
Regards
Phil
Proud to be a Super User!
Hi @Anonymous
You can add a Custom Column in the Power Query editor like this
= Table.AddColumn(#"PreviousStepName", "Addition", each List.NonNullCount({[Acre1], [Acre2], [Acre3], [Acre4], [Acre5]}), Int64.Type)
Here's a full sample query, copy/paste this into a blank query
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WclTSUTIGYgSK1YlWcgIyjIDYAIgNkcSdoXwQNoOqMQLLuEBVo5rjCmSYQ9UiCbtBhSyA2BQmHgsA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [User = _t, Acre1 = _t, Acre2 = _t, Acre3 = _t, Acre4 = _t, Acre5 = _t]),
#"Changed Type" = Table.TransformColumnTypes(Source,{{"User", type text}, {"Acre1", Int64.Type}, {"Acre2", Int64.Type}, {"Acre3", Int64.Type}, {"Acre4", Int64.Type}, {"Acre5", Int64.Type}}),
#"Inserted Sum" = Table.AddColumn(#"Changed Type", "Addition", each List.NonNullCount({[Acre1], [Acre2], [Acre3], [Acre4], [Acre5]}), Int64.Type)
in
#"Inserted Sum"Regards
Phil
If I answered your question please mark my post as the solution.
If my answer helped solve your problem, give it a kudos by clicking on the Thumbs Up.
Proud to be a Super User!
Check out the April 2026 Power BI update to learn about new features.
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.
| User | Count |
|---|---|
| 45 | |
| 38 | |
| 34 | |
| 21 | |
| 17 |
| User | Count |
|---|---|
| 65 | |
| 63 | |
| 31 | |
| 26 | |
| 25 |