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 August 31st. Request your voucher.
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