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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
I have data for percentage of time people spend on a project. It looks like this:
Team Member | Project | October 2021 | November 2021 | December 2021 | January 2022 | February 2022 | March 2022 | April 2022 |
Adam | Project Alpha | 40% | 40% | 40% | 40% | 40% | 40% | 40% |
Adam | Project Beta | 40% | 40% | 40% | 40% | 40% | 40% | 40% |
John | Project Alpha | 25% | 25% | 25% | ||||
John | Project Beta | 100% | 100% | 100% | 100% | 100% | 100% | 100% |
Alan | Project Beta | 100% | 100% | 100% | 100% | 100% | 100% | 100% |
What I want is to be able to sum the rows, but average across columns as I drill up in dates. So, if I set my rows as Team Member in a table, I should see this:
Team Member | October 2021 | November 2021 | December 2021 | January 2022 | February 2022 | March 2022 | April 2022 |
Adam | 80% | 80% | 80% | 80% | 80% | 80% | 80% |
John | 100% | 125% | 125% | 125% | 100% | 100% | 100% |
Alan | 100% | 100% | 100% | 100% | 100% | 100% | 100% |
That's easy. However, if I drill up on or summarize the columns to Quarters or Years, if should look like this:
Team Member | Q4 2021 | Q1 2022 | Q2 2022 |
Adam | 80% | 80% | 80% |
John | 116.6% | 108.3% | 100% |
Alan | 100% | 100% | 100% |
Team Member | 2021 | 2022 |
Adam | 80% | 80% |
John | 116.6% | 106.25% |
Alan | 100% | 100% |
How can I work my formula to do that?
Solved! Go to Solution.
Try averaging at the year-month level of granularity.
MonthlySumAvg =
AVERAGEX (
SUMMARIZE ( dimDate, dimDate[Year], dimDate[Month] ),
CALCULATE ( SUM ( dataTable[Complete%] ) )
)
Hi @jsangerman ,
Does the replies above solve your problem? If it has been solved, please mark the correct reply as the standard answer to help the other members find it more quickly.Thanks in advance for your kind cooperation!
Hope it helps,
Community Support Team _ Caitlyn
If this post helps then please consider Accept it as the solution to help the other members find it more quickly.
Try averaging at the year-month level of granularity.
MonthlySumAvg =
AVERAGEX (
SUMMARIZE ( dimDate, dimDate[Year], dimDate[Month] ),
CALCULATE ( SUM ( dataTable[Complete%] ) )
)
That seems to do it. Thanks, Alexis.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.