Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Is it possible to show the average over 4 weeks instead of the total (e.g. 99,930 for the first row)?
Solved! Go to Solution.
Hi @EMWDLX ,
Please try the following methods and check if they can solve your problem:
1.Create the simple table.
2.Create the new measure to calculate average.
Average Sales =
var T = SUM('Table'[Sales])
RETURN
IF (
ISINSCOPE ('Table'[week]),
T,
T/4)
3.Drag the measure into the matrix values.
4.Edit the Column subtotal label.
5.The result is shown below.
Best Regards,
Wisdom Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @EMWDLX ,
Please try the following methods and check if they can solve your problem:
1.Create the simple table.
2.Create the new measure to calculate average.
Average Sales =
var T = SUM('Table'[Sales])
RETURN
IF (
ISINSCOPE ('Table'[week]),
T,
T/4)
3.Drag the measure into the matrix values.
4.Edit the Column subtotal label.
5.The result is shown below.
Best Regards,
Wisdom Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@EMWDLX
Try something like:
Sales Amount New =
IF(
ISINSCOPE( financials[week Number]),
[Sales Amount],
AVERAGEX(
VALUES( financials[week Number] ),
[Sales Amount])
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
26 | |
10 | |
10 | |
9 | |
6 |