Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Wondering how to do something as follows:
Order # | Error
Order 1 | Something
Order 1 | Something else
Order 2 | null
Order 3 | Something
I want a column or a table that says something like this:
Order # | Error Count
Order 1 | 2
Order 2 | 0
Order 3 | 1
Any ideas?
Solved! Go to Solution.
You can use "Group By" in the query editor.
In order to create base code, you can choose to sum the "Error" column and then adjust the generated code to the code below.
let
Source = Input,
#"Grouped Rows" = Table.Group(Source, {"Order #"}, {{"Error Count", each List.NonNullCount([Error]), Int64.Type}})
in
#"Grouped Rows"
I tried to do that, but it wouldn't let me. That is because the error column is text, so it is not letting me use the sum operator
Ah, forgot to tell. Sure you will get errors at first, just ignore these and adjust the code, then you'll be fine.
Like this:
Wow, thank you so much, this was really helpful.
One last question. I want to either append this column to the original table, or create a new table without altering the first table. How do I do this?
Just save & load the query with a new name, then you'll have your new table.
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 |
|---|---|
| 46 | |
| 43 | |
| 39 | |
| 19 | |
| 15 |
| User | Count |
|---|---|
| 68 | |
| 67 | |
| 31 | |
| 27 | |
| 24 |