Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
Anonymous
Not applicable

Distinct Count, Filter

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

 

CALCULATE(DISTINCTCOUNT(WFE[Fee Earner Name]), FILTER(Utilisation,Utilisation[Hours]<25))
 
NameHours
A270
B24
C20
D74
E66
F10
G4
H428
I6

 

The answer should be 5 however, I'm getting 9

2 ACCEPTED SOLUTIONS
Anonymous
Not applicable

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:

 

vyifanwmsft_0-1712628088814.png

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.

View solution in original post

Ashish_Mathur
Super User
Super User

Hi,

Revise the second measure to

Measure = countrows(FILTER(VALUES(WFE[Fee Earner Name]),[Hours]<25))

Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

View solution in original post

3 REPLIES 3
Ashish_Mathur
Super User
Super User

Hi,

Revise the second measure to

Measure = countrows(FILTER(VALUES(WFE[Fee Earner Name]),[Hours]<25))

Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
Anonymous
Not applicable

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:

 

vyifanwmsft_0-1712628088814.png

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.

gmsamborn
Super User
Super User

Hi @Anonymous 

 

Would this measure help?

 

x = 
COUNTX(
    FILTER(
        'Table',
        'Table'[Hours] < 25
    ),
    'Table'[Name]
)

 

 



Proud to be a Super User!

daxformatter.com makes life EASIER!

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.