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.
I'm working with a list of completed and ongoing projects and trying to report on the numbers ofcompleted projects that were:
Here's what is not working:
Measure 1:
CompletedLateCount = CALCULATE ( COUNT('WIP Tracker'[Title]), FILTER ( 'WIP Tracker', 'WIP Tracker'[Completion Date]>'WIP Tracker'[Due Date].[Date]) && ISBLANK('WIP Tracker'[Due Date]=FALSE()))
Measure2:
Solved! Go to Solution.
Hi @SAHoff ,
Please try:
CompletedLateCount =
CALCULATE (
COUNT ( 'WIP Tracker'[Title] ),
'WIP Tracker'[Completion Date] > 'WIP Tracker'[Due Date]
&& 'WIP Tracker'[Due Date] <> BLANK ()
)
CompletedOnTimeCount = CALCULATE(COUNT('WIP Tracker'[Title]),'WIP Tracker'[Completion Date]<='WIP Tracker'[Due Date])
Best Regards,
Gao
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data
Hi @SAHoff ,
Please try:
CompletedLateCount =
CALCULATE (
COUNT ( 'WIP Tracker'[Title] ),
'WIP Tracker'[Completion Date] > 'WIP Tracker'[Due Date]
&& 'WIP Tracker'[Due Date] <> BLANK ()
)
CompletedOnTimeCount = CALCULATE(COUNT('WIP Tracker'[Title]),'WIP Tracker'[Completion Date]<='WIP Tracker'[Due Date])
Best Regards,
Gao
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data
This is perfect. Thanks so much!
Hi @SAHoff ,
You can achieve this by using a calculated column like below. Please adjust to fit your table and field names.
User | Count |
---|---|
68 | |
63 | |
59 | |
54 | |
28 |
User | Count |
---|---|
182 | |
81 | |
64 | |
46 | |
38 |