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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
I ran a measure to get the running billings of a project by MonthYearNumber to keep it simple. But how to I stop the line/data from running on forever and limit it to the last date of data provided. I can filter it, but I have hundreds of projects and I don't want to have to filter it on each project.
Solved! Go to Solution.
@efstel I would recommend this approach: Better Running Total - Microsoft Fabric Community
But, even with what you have, you should be able to do this:
Measure =
VAR __Rows = COUNTROWS('JobBillingData')
VAR __Result = IF( __Rows = BLANK(), BLANK(), [BilledAmt running total in MonthYearNumber])
RETURN
__Result
@efstel I would recommend this approach: Better Running Total - Microsoft Fabric Community
But, even with what you have, you should be able to do this:
Measure =
VAR __Rows = COUNTROWS('JobBillingData')
VAR __Result = IF( __Rows = BLANK(), BLANK(), [BilledAmt running total in MonthYearNumber])
RETURN
__Result
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 41 | |
| 38 | |
| 36 | |
| 30 | |
| 28 |
| User | Count |
|---|---|
| 129 | |
| 88 | |
| 79 | |
| 68 | |
| 63 |