Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hi All,
I am busy with a measure that count rows of calls excecpt the days and calls of holidays.
Can anyone help?
kind regards,
Ezz
Hi @Anonymous ,
You can refer the solutions in the following threads to achieve it.
Calculating number of days between two dates
How exclude holidays from networking days
If the above ones are not applicable for your scenario, please provide some sample data of these three tables(Calls, Date and Holidays) and your expected result. It is better if you can explain more details with examples. Thank you.
Best Regards
Rena
@Anonymous , do you have a holiday . Assume you have date table with Holiday
measure
calls = calculate(count(Table[callid]),[WeekDay]=1)
A column in date table
WeekDay = if(weekday([Date],2) <6,1,0)
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.