Forum Discussion
Anonymous
4 years agoNot applicable
Count instances in specific intervals when parameter higher than a value
Hi all, Hopefully this is quite straightforward, but I can't seem to be able to find the solution to it. I have a parameter that changes based on different time bucket columns (1hr column, 15min...
- 4 years ago
Anonymous , Try a measure like
countx(filter(values(Table[Employee]), [Count measure] >1 ), [Employee])
For below visual , you can use show on row in Matrix
amitchandak
4 years agoSuper User
Anonymous , Try a measure like
countx(filter(values(Table[Employee]), [Count measure] >1 ), [Employee])
For below visual , you can use show on row in Matrix
Anonymous
4 years agoNot applicable
Thanks a lot amitchandak ! That worked exactly the way I needed !!