Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Solved! Go to Solution.
this did not work for you ?
CALCULATE (
distinctcount(Training[trainee id]),
FILTER (
Training,
SEARCH ( "Completed", Training[Status],, 0 ) > 0
|| SEARCH ( "Complete", Training[Status],, 0) > 0
)
)
@Anonymous not sure i quite understand what you asking, did you say you tried this
Measure Trainees Completed Course =
CALCULATE (
DISTINCTCOUNT ( [trainingid] ),
FILTER (
Training,
SEARCH ( "Completed", Training[Status],, BLANK () ) > 0
|| SEARCH ( "Complete", Training[Status],, BLANK () ) > 0
)
) but it didn't work? What are you trying to do?
Proud to be a Super User!
@Anonymous not sure i quite understand what you asking, did you say you tried this
Measure Trainees Completed Course =
CALCULATE (
DISTINCTCOUNT ( [trainingid] ),
FILTER (
Training,
SEARCH ( "Completed", Training[Status],, BLANK () ) > 0
|| SEARCH ( "Complete", Training[Status],, BLANK () ) > 0
)
) but it didn't work? What are you trying to do?
Proud to be a Super User!
this did not work for you ?
CALCULATE (
distinctcount(Training[trainee id]),
FILTER (
Training,
SEARCH ( "Completed", Training[Status],, 0 ) > 0
|| SEARCH ( "Complete", Training[Status],, 0) > 0
)
)
Yes it worked, thank you!