Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello,
I've create a table with DAX to group a sum by date, company and team.
SUMMARIZE(
table,
table[company],
table[team],
table[date],
"Available hours sum", SUM(table[available_hour])
)
In the same dax I want to use this created table to return the average of "Available hours sum" grouped by only company and team.
Appreciate any help.
Solved! Go to Solution.
you can try to create table visual to get that.
if you can to create a table,what about change SUM to average?
SUMMARIZE(
table,
table[company],
table[team],
"Available hours sum", AVERAGE(table[available_hour])
)
Proud to be a Super User!
you can try to create table visual to get that.
if you can to create a table,what about change SUM to average?
SUMMARIZE(
table,
table[company],
table[team],
"Available hours sum", AVERAGE(table[available_hour])
)
Proud to be a Super User!
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 103 | |
| 80 | |
| 63 | |
| 50 | |
| 45 |