Forum Discussion
toball
6 years agoRegular Visitor
Running Total - Two dates - Received and Completed
Hi all, Looking to replicate the second list in my attachment in Power BI running total or waterfall chart, I just cannot get my head around how to do this but know it must be simple! Compan...
- Anonymous6 years ago
If we exclude those null entries directly in the Work Completed Sum, does that help?
Work Completed Sum = CALCULATE( [Work Received Sum], USERELATIONSHIP(JobList[Date Completed], Dates[Date]), NOT(ISBLANK(JobList[Date Completed])) )(I don't have my quick sample project, so i haven't tested out this code)
Anonymous
6 years agoNot applicable
If we exclude those null entries directly in the Work Completed Sum, does that help?
Work Completed Sum = CALCULATE(
[Work Received Sum],
USERELATIONSHIP(JobList[Date Completed], Dates[Date]),
NOT(ISBLANK(JobList[Date Completed]))
)(I don't have my quick sample project, so i haven't tested out this code)
toball
6 years agoRegular Visitor
Awesome - works great now! Thanks so much Ross - appreciate the quick responses.