Forum Discussion
Group by specific coulumn differentiating specific columns
Hello people,
I have a list such as:
Now I want a seperate table giving me the following result:
"name" grouped but still differenciated at "region" and "period". -> only summarized "subname" and summed the counts.
Thanks for you help! π
Is this possible in PowerQuery? I would need to have both tables, the orignial and new one seperated.
lynnsop , Group by in power query
https://radacad.com/power-bi-aggregation-step-1-create-the-aggregated-table
Summarize in DAX should help you
summarize(Table, [Name], [Region], [period], "Count 1" ,Sum([Count1]) , "Count 2" , Sum([Count2]))
1 Reply
- amitchandak
Super User
lynnsop , Group by in power query
https://radacad.com/power-bi-aggregation-step-1-create-the-aggregated-table
Summarize in DAX should help you
summarize(Table, [Name], [Region], [period], "Count 1" ,Sum([Count1]) , "Count 2" , Sum([Count2]))