Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Before I starte waisting hours on finding the best practise on this topic, I though I might just ask given the question is pretty simple.
Let's say you have a model with the following data:
Customer | Monthlyly fee | Start Date | End Data
A | 100 | 01/06/2019 | 30/11/2019
B | 125 | 01/06/2019 | 31/12/2019
C | 75 | | 01/06/2019 | 31/10/2019
How can I get the monthly total (sum) values in a table to analyze this? Do you generate the monthly values first in PowerQuery of can this be done on the fly using DAX?
Solved! Go to Solution.
Hi @wlknsn ,
In your scenario, I would use the following DAX query to do that:
Result =
CALCULATE (
SUM ( Data[Monthly fee] ),
FILTER (
ALL ( Data ),
Data[Start Date] <= MIN ( 'Date'[Date] )
&& Data[End Date] >= MAX ( 'Date'[Date] )
)
)The result will like below:
Best Regards,
Teige
Hi @wlknsn ,
In your scenario, I would use the following DAX query to do that:
Result =
CALCULATE (
SUM ( Data[Monthly fee] ),
FILTER (
ALL ( Data ),
Data[Start Date] <= MIN ( 'Date'[Date] )
&& Data[End Date] >= MAX ( 'Date'[Date] )
)
)The result will like below:
Best Regards,
Teige
Hi @wlknsn
No need to pre aggregate data if your table is not massive, I would try DAX and if performance is not satisfactory then you can consider aggregating yuor data.
Regards,
Mariusz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Is there an easy way to do convert that data into monthly records in powerquery?
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 22 | |
| 22 | |
| 18 | |
| 17 | |
| 13 |
| User | Count |
|---|---|
| 63 | |
| 50 | |
| 46 | |
| 41 | |
| 39 |