Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreThe FabCon + SQLCon recap series starts April 14th at 8am Pacific. If you’re tracking where AI is going inside Fabric, this first session is a can't miss. Register now
I have two columns in a Table as seen below.
| Store Number | Audit Violation |
| 8297 | Failed Audit |
| 8297 | Passed Audit |
| 8297 | Failed Audit |
| 8297 | Passed Audit |
| 8297 | Passed Audit |
| 8291 | Failed Audit |
| 8291 | Passed Audit |
| 8291 | Passed Audit |
| 8281 | Passed Audit |
| 8267 | Failed Audit |
| 8267 | Passed Audit |
I need to basically get a count of each unqieu value and put them into two separate columns like below. How can I do this in Power Query Editor?
| Store Number | Count Failed Audits | Count Passed Audits |
| 8297 | 2 | 3 |
| 8291 | 1 | 2 |
| 8281 | 0 | 1 |
| 8267 | 1 | 1 |
Solved! Go to Solution.
Hi @Anonymous ,
In case you still want to do it in PQ Editor.
= Table.Group(#"Changed Type", {"Store Number"},
{{"Count Failed Audits", each Table.RowCount(Table.SelectRows(_, each ([Audit Violation] = "Failed Audit"))), Int64.Type},
{"Count Passed Audits", each Table.RowCount(Table.SelectRows(_, each ([Audit Violation] = "Passed Audit"))), Int64.Type}})
Hi @Anonymous ,
In case you still want to do it in PQ Editor.
= Table.Group(#"Changed Type", {"Store Number"},
{{"Count Failed Audits", each Table.RowCount(Table.SelectRows(_, each ([Audit Violation] = "Failed Audit"))), Int64.Type},
{"Count Passed Audits", each Table.RowCount(Table.SelectRows(_, each ([Audit Violation] = "Passed Audit"))), Int64.Type}})
@Anonymous , to me this seems like unpivot with count.
First, create a combined column
Audit Violation = [Audit] & " " & [Violation]
using this column unpivot and take count
https://radacad.com/pivot-and-unpivot-with-power-bi
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 |
|---|---|
| 51 | |
| 43 | |
| 39 | |
| 19 | |
| 19 |
| User | Count |
|---|---|
| 70 | |
| 69 | |
| 34 | |
| 33 | |
| 30 |