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
So I have a matrix with the rows beign made of calculated measures and the columns are fiscal week.
what I need to add is an average column that takes into account a parameter. The parameter is a fiscal week (eg. 16) and I need to average across the row upto and including that parameter week.
My problem is that all theaverage calcs average within a column or a specific measure. is there a way to just add a column that will average across the row?
Solved! Go to Solution.
Hi @Anonymous ,
You can create a measure like this to calculate the row average in matrix:
Average =
CALCULATE(
AVERAGE('Table'[Value]),
ALLEXCEPT('Table','Table'[Category])
)
Best Regards,
Community Support Team _ Yingjie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
You can create a measure like this to calculate the row average in matrix:
Average =
CALCULATE(
AVERAGE('Table'[Value]),
ALLEXCEPT('Table','Table'[Category])
)
Best Regards,
Community Support Team _ Yingjie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
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 |
|---|---|
| 104 | |
| 82 | |
| 72 | |
| 46 | |
| 35 |