Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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 column etc.)
What I would like to do is create a measure that will calculate the number of instances where the sum of the parameter on a 15min interval is above 25.
My data look like this on a pivot
10:00 - 10:15 | 10:15 -10:30 | 10:30 - 10:45 | 10:45 - 11:00 | ... | ... | ... | |
Employer 1 | 15 | 19 | 25 | 15 | |||
Employer 2 | 22 | 55 | 40 | 22 | |||
Employer 3 | 30 | 40 | 26 | 30 | |||
Employer 4 | 45 | 20 | 40 | 45 | |||
Measure Required COUNT (Above 25) | 2 | 3 | 4 | 2 |
What I would like to have as a final product is the below.
10:00 - 10:15 | 10:15 -10:30 | 10:30 - 10:45 | 10:45 - 11:00 | ... | ... | ... | |
Measure Required COUNT (Above 25) | 2 | 3 | 4 | 2 |
Any idea?
Thanks in advance
Solved! Go to Solution.
@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 , Try a measure like
countx(filter(values(Table[Employee]), [Count measure] >1 ), [Employee])
For below visual , you can use show on row in Matrix
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
72 | |
72 | |
38 | |
31 | |
27 |
User | Count |
---|---|
92 | |
50 | |
44 | |
40 | |
35 |