Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin 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.
Hi,
What is the best way to get a running total of assets by month. My table has a "date created" and "date retired" column. I want to look at how many assets were in service each month. Here is an example of data
Solved! Go to Solution.
Hi,
Please check the below picture and the attached pbix file.
I tried to simplify the sample like below.
I suggest having a calendar table like below.
Asset count measure: =
CALCULATE( COUNTROWS(Data),
FILTER( Data,
Data[Created Date] <= MAX( 'Calendar'[Date]) &&
OR( Data[Retired Date] >= MIN('Calendar'[Date]), Data[Retired Date] = BLANK())
)
)
Hi,
Please check the below picture and the attached pbix file.
I tried to simplify the sample like below.
I suggest having a calendar table like below.
Asset count measure: =
CALCULATE( COUNTROWS(Data),
FILTER( Data,
Data[Created Date] <= MAX( 'Calendar'[Date]) &&
OR( Data[Retired Date] >= MIN('Calendar'[Date]), Data[Retired Date] = BLANK())
)
)
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 9 | |
| 5 | |
| 4 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 13 | |
| 9 | |
| 8 | |
| 8 | |
| 7 |