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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi,
Below is the result I am getting in Power BI report. For Number of Appointments Booked, I have used the formula:
Solved! Go to Solution.
Thanks for the reply from @lbendlin , please allow me to provide another insight:
Hi @writetofaiz ,
You can try the following measure:
Test =
var _table1=
SUMMARIZE('Table',[appt_service_description],[dim_clinician_key],[dim_practice_key])
return
COUNTX(
_table1 ,[appt_service_description])
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thanks for the reply from @lbendlin , please allow me to provide another insight:
Hi @writetofaiz ,
You can try the following measure:
Test =
var _table1=
SUMMARIZE('Table',[appt_service_description],[dim_clinician_key],[dim_practice_key])
return
COUNTX(
_table1 ,[appt_service_description])
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Looks like you want to use DISTINCTCOUNT() rather than COUNT()