Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hey!
Suppose in the Power Query Editor, I have the following table named Table:
And now from the given table, I want to construct the following table:
How can I reach this?
The solutions says:
"Group by [Department] and [School] and create a new column named [Avg Score] that uses the AVERAGE function on the [Score] column."
I tried
TableNew = CALCULATETABLE(SUMMARIZE(Table,Table[Department],Table[School],"Avg Score", AVERAGE(Table[Score])),Table[School]="School1")and it works.
Maybe this is meant, maybe this is not meant, I do not know.
yes, looks ok. Could have used AVERAGEX too.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.