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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Anonymous
Not applicable

Trying to exclude values from one colum and count from another

Hello I am trying to disctinct count one colum and exclude values of another 

 

I have this calculated dax but I am not getting the results that I am looking for 

 

Count of inactive Users Training =
CALCULATE(
    COUNTA('Training__Global__by_Business_U'[User]),
    'Training__Global__by_Business_U'[Timesheets - Approved hours]
        IN { 0 }
)
 
Then I tried doing this 
 
Test Exclude double user cout =
CALCULATE(
DISTINCTCOUNT(Training__Global__by_Business_U[User]) ,
    'Training__Global__by_Business_U'[Timesheets - Approved hours]
IN { 0 }
)
 
With those two I am not getting the results that I am looking for please help me I want to distinct count the users and exclue Zero values for the approved hours
3 REPLIES 3
v-alq-msft
Community Support
Community Support

Hi, @Anonymous 

 

I'd like to suggest you try the following measure to see if it works.

Test Exclude double user cout =
CALCULATE (
    DISTINCTCOUNT ( Training__Global__by_Business_U[User] ),
    'Training__Global__by_Business_U'[Timesheets - Approved hours] <> 0
)

Or

Test Exclude double user cout =
CALCULATE (
    DISTINCTCOUNT ( Training__Global__by_Business_U[User] ),
    FILTER (
        'Training__Global__by_Business_U',
        'Training__Global__by_Business_U'[Timesheets - Approved hours] <> 0
    )
)

 

Best Regards

Allan

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Anonymous
Not applicable

Hi Allan, 

 

Thanks for sending these over however I have just tried and they are both still giving me the total count of users and not excluding any of the zero values for the approved hours 

Hi, @Anonymous 

 

Could you please show us some sample data and expected result with OneDrive for business? Do mask sensitive data before uploading. Thanks.

 

Best Regards

Allan

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

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