The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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
User | Count |
---|---|
15 | |
13 | |
9 | |
6 | |
6 |
User | Count |
---|---|
27 | |
19 | |
13 | |
9 | |
5 |