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!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
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
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 56 | |
| 52 | |
| 45 | |
| 17 | |
| 16 |
| User | Count |
|---|---|
| 108 | |
| 108 | |
| 39 | |
| 33 | |
| 25 |