This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
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
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 36 | |
| 33 | |
| 31 | |
| 24 | |
| 18 |
| User | Count |
|---|---|
| 68 | |
| 50 | |
| 33 | |
| 24 | |
| 24 |