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! Request now
Hello everyone,
How can I use the calculation of a measure without considering the filter of the relationship column between tables?
I have these two tables, Table Employee and Table Calendar.
Relationship: Day Worked ------ Date
The Day Worked column contains only the days the employee worked
The Date column contains all days of the year.
The column Business day considers 1 being (Monday to Friday) and 0 being (Saturday and Sunday).
Using the Dax measure below, I can count the working days for each period of time, but I would like this value to be locked for each filtered employee.
Business day by Employee = CALCULATE(COUNT('Table Calendar'[Date]); 'Table Calendar'[Business day] = 1)
It is possible?
Solved! Go to Solution.
Hi @Anonymous ,
Use the all formula on the calculation:
Business day by Employee = COUNTROWS(FILTER(ALLSELECTED('Table Calendar'); 'Table Calendar'[Business day] = 1))
Not on computer did this by heart may need some changes.
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em Português@Anonymous Try this:
Business day by Employee =
CALCULATE (
COUNT ( 'Table Calendar'[Date] ),
'Table Calendar'[Business day] = 1,
ALL ( TableEmploye )
)
Hi @Anonymous ,
Try modifying your dax as follows:
Business day by Employee = CALCULATE(COUNT('Table Calendar'[Date]); FILTER(ALL('Table Calendar'), 'Table Calendar'[Business day] = 1))
Thanks,
Pragati
Hi @Anonymous ,
Use the all formula on the calculation:
Business day by Employee = COUNTROWS(FILTER(ALLSELECTED('Table Calendar'); 'Table Calendar'[Business day] = 1))
Not on computer did this by heart may need some changes.
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsCheck out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 92 | |
| 69 | |
| 50 | |
| 40 | |
| 38 |