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.
Solved! Go to Solution.
Hi @mgaut341 ,
You can try formula like below:
sameday = CALCULATE(COUNTROWS('Table'),'Table'[Scheduling Days] = 0)
If the problem persists, please provide relevant test data and describe it.
Best Regards,
Adamk Kong
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @mgaut341 ,
You can try formula like below:
sameday = CALCULATE(COUNTROWS('Table'),'Table'[Scheduling Days] = 0)
If the problem persists, please provide relevant test data and describe it.
Best Regards,
Adamk Kong
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
yes, that did work!
However I now run into another problem
I want to know the percentage of appts scheduled the same day, but I get a circular dependency.
Do you know how to fix this?
Hi @mgaut341
Can you please try the below DAX?
Appts_Schd_Same_Day =
CALCULATE(
COUNTROWS('New Appointment_Fact'),
FILTER(
'New Appointment_Fact',
'New Appointment_Fact'[Scheduling Days] = 0
)
)
Please let me know if not works
Proud to be a Super User! | |
Unfortunately, it still doesn't work
User | Count |
---|---|
98 | |
78 | |
77 | |
49 | |
26 |