March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
I would like to know how many peple have less than 25 hours.
I have a measure that calculates Hours= CALCULATE(ROUND(SUM(Utilisation[NonChargeableHours]),4), Matter[Nonbill Category]="Pro Bono")
Then I wrote the below mease to let me count how many people are below 25 hours, however, it is giving me the number of people
Name | Hours |
A | 270 |
B | 24 |
C | 20 |
D | 74 |
E | 66 |
F | 10 |
G | 4 |
H | 428 |
I | 6 |
The answer should be 5 however, I'm getting 9
Solved! Go to Solution.
Hi @Anonymous ,
@gmsamborn offers a good solution. In the meantime I have another approach to your problem that I hope will help you. Based on the information you provided, you are actually on the right path. I have modified your code slightly:
Below 25 hours =
CALCULATE (
DISTINCTCOUNT ( 'Table'[Name] ),
FILTER ( 'Table', 'Table'[Hours] < 25 )
)
Final output:
How to Get Your Question Answered Quickly - Microsoft Fabric Community
If it does not help, please provide more details with your desired out put and pbix file without privacy information.
Best Regards,
Ada Wang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi,
Revise the second measure to
Measure = countrows(FILTER(VALUES(WFE[Fee Earner Name]),[Hours]<25))
Hi,
Revise the second measure to
Measure = countrows(FILTER(VALUES(WFE[Fee Earner Name]),[Hours]<25))
Hi @Anonymous ,
@gmsamborn offers a good solution. In the meantime I have another approach to your problem that I hope will help you. Based on the information you provided, you are actually on the right path. I have modified your code slightly:
Below 25 hours =
CALCULATE (
DISTINCTCOUNT ( 'Table'[Name] ),
FILTER ( 'Table', 'Table'[Hours] < 25 )
)
Final output:
How to Get Your Question Answered Quickly - Microsoft Fabric Community
If it does not help, please provide more details with your desired out put and pbix file without privacy information.
Best Regards,
Ada Wang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous
Would this measure help?
x =
COUNTX(
FILTER(
'Table',
'Table'[Hours] < 25
),
'Table'[Name]
)
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
User | Count |
---|---|
90 | |
89 | |
85 | |
73 | |
49 |
User | Count |
---|---|
169 | |
144 | |
90 | |
70 | |
58 |