Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register 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
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
143 | |
78 | |
63 | |
52 | |
47 |
User | Count |
---|---|
212 | |
82 | |
61 | |
60 | |
58 |