Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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