Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
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
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
118 | |
100 | |
73 | |
65 | |
40 |