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.
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
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.
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
User | Count |
---|---|
22 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
27 | |
13 | |
11 | |
9 | |
6 |