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.
I have a Date column and I need to calculate the average value for each month by repeating that value for every day of that month.
Example,
Date | Value | Average |
1/1/2021 | 150 | 100 |
1/2/2021 | 100 | 100 |
1/20/2021 | 50 | 100 |
2/5/2021 | 300 | 200 |
2/10/2021 | 100 | 200 |
Solved! Go to Solution.
@Anonymous
Add the following column:
Avg =
var __my = FORMAT(Table[Date],"mmyy") return
CALCULATE(
AVERAGE(Table[Value]),
FILTER(
Table,
format(Table[Date],"mmyy") = __my)
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@Anonymous
Add the following column:
Avg =
var __my = FORMAT(Table[Date],"mmyy") return
CALCULATE(
AVERAGE(Table[Value]),
FILTER(
Table,
format(Table[Date],"mmyy") = __my)
)
⭕ 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 |
---|---|
10 | |
7 | |
7 | |
6 | |
6 |