Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi Everyone -
I've created a calculated column that looks at the count of days from a client request to intake of that client - off of two date fields.
I then created a measure for a running total/cume by day -- but on days where there are zero intakes, the first value is populating in my table.
My measure:
Cume Intakes =
Solved! Go to Solution.
Hi !
You cna try using ISBLANK() function to get desired output;
Cume Intakes =
IF ( ISBLANK('Assessment'[Intake Count])
, BLANK()
, CALCULATE(COUNT('Assessment'[Connection to Intake Diff in Days]),
FILTER(ALLSELECTED('Assessment'[Connection to Intake Diff in Days]),
'Assessment'[Connection to Intake Diff in Days] <= MAX('Assessment'[Connection to Intake Diff in Days])))
)
Regards,
Hasham
Hi !
You cna try using ISBLANK() function to get desired output;
Cume Intakes =
IF ( ISBLANK('Assessment'[Intake Count])
, BLANK()
, CALCULATE(COUNT('Assessment'[Connection to Intake Diff in Days]),
FILTER(ALLSELECTED('Assessment'[Connection to Intake Diff in Days]),
'Assessment'[Connection to Intake Diff in Days] <= MAX('Assessment'[Connection to Intake Diff in Days])))
)
Regards,
Hasham
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 6 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 16 | |
| 8 | |
| 7 | |
| 7 |