Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Good afternoon
I'm stuck to make this formula. What I need is a different count of dates, but one that takes into account both the month and the id.
That is, in month 7, the 100 employee has been there for 3 days.
Would there be any way to put this double filter?.
It will make you catch the month filter:
But for the employee filter, you have to depend on each employee, not do a =100 (for example)
In other words, I don't want to:
Solved! Go to Solution.
@Anonymous,
Try this measure:
RESULTADO CONTAR DISTINTO =
CALCULATE (
DISTINCTCOUNT ( 'Production Data: Capacity Hours (Antonio)'[DAY] ),
ALLEXCEPT (
'Production Data: Capacity Hours (Antonio)',
'Production Data: Capacity Hours (Antonio)'[ID],
'Production Data: Capacity Hours (Antonio)'[MO]
)
)
Proud to be a Super User!
@Anonymous,
Try this measure:
RESULTADO CONTAR DISTINTO =
CALCULATE (
DISTINCTCOUNT ( 'Production Data: Capacity Hours (Antonio)'[DAY] ),
ALLEXCEPT (
'Production Data: Capacity Hours (Antonio)',
'Production Data: Capacity Hours (Antonio)'[ID],
'Production Data: Capacity Hours (Antonio)'[MO]
)
)
Proud to be a Super User!
That's great!!!
It works perfect. Thanks a lot!
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
109 | |
100 | |
95 | |
38 | |
37 |
User | Count |
---|---|
151 | |
126 | |
75 | |
74 | |
57 |