Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Folks, need a help. I receive from a system the following table:
Engagement ID | Valeu USD | Status |
12345 | 100 | Active |
12345 | 200 | Active |
12345 | -400 | Active |
12345 | 600 | Active |
12345 | 200 | Active |
I need to transform it in something like this in a easy way using PBI
Engagement ID | Valeu USD | Status |
12345 | 700 | Active |
I´ve been strugling to work with this data and I believe these duplicates fields are the reason. Any help?
Solved! Go to Solution.
You can use group by in the edit queries, then advance and add multiple column(Screenshot below)
Hey @Anonymous
You can use the following DAX expression once the data has been imported into PBI:Consolidated Table =
SUMMARIZE( EngagementID, EngagementID[Status], EngagementID[Engagement ID], "Value USD", SUM(EngagementID[Value USD]) )
Click HERE to access my PBIX file if needed.
You can use group by in the edit queries, then advance and add multiple column(Screenshot below)
I believe this can be achieved using Group By on power query.
let Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMjQyNjFV0lEyNDAAko7JJZllqUqxOggJI1wSuia4ZMyIMysWAA==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type text) meta [Serialized.Text = true]) in type table [#"Engagement ID" = _t, #"Valeu USD" = _t, Status = _t]), #"Changed Type" = Table.TransformColumnTypes(Source,{{"Engagement ID", Int64.Type}, {"Valeu USD", Int64.Type}, {"Status", type text}}), #"Grouped Rows" = Table.Group(#"Changed Type", {"Engagement ID", "Status"}, {{"Value USD", each List.Sum([Valeu USD]), type number}}) in #"Grouped Rows"
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
76 | |
71 | |
56 | |
39 | |
35 |
User | Count |
---|---|
66 | |
66 | |
59 | |
53 | |
45 |