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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
gspollock
Helper I
Helper I

DISTINCTCOUNT doesn't give correct result as a column

Hi all,

I want to create a column that takes a distinct count of account_id column for each Account Manager, like this:

 

Number Accounts Shared =  CALCULATE(DISTINCTCOUNT(mbammsreportshare[account_id])) 
 
The column is simply returning the total count for that Account Manager.  The same formula in a measure gives the correct results.  
 
Account ManagerNumber Accounts Shared (measure)Number Accounts Shared (column)
Acct Mgr111
Acct Mgr2  
Acct Mgr323
Acct Mgr4  
Acct Mgr544
Acct Mgr611
Acct Mgr711
Acct Mgr844
Acct Mgr96   15

 

I need to use a column because I want to create a measure that sums Number Accounts Shared like this:

Total Over 3 = CALCULATE(sum( mbammsreportshare[Number Accounts Shared]), FILTER(mbammsreportshare,[Number Accounts Shared]>3 ))

Power BI won't allow a measure in the SUM expression. 

 

A second problem is that summing the column returns blanks when using the filter expression.  

 

If there is a way around using a column for Number Accounts Shared, I would still like to know why does it not work as a column.

 

Thanks for your help!

1 ACCEPTED SOLUTION
tamerj1
Super User
Super User

Hi @gspollock 

Please vote for https://ideas.powerbi.com/ideas/idea/?ideaid=082203f1-594f-4ba7-ac87-bb91096c742e

 

and try

Total Over 3 =
SUMX (
VALUES ( mbammsreportshare[Account Manager] ),
INT ( [Number Accounts Shared] > 3 )
)

View solution in original post

2 REPLIES 2
tamerj1
Super User
Super User

Hi @gspollock 

Please vote for https://ideas.powerbi.com/ideas/idea/?ideaid=082203f1-594f-4ba7-ac87-bb91096c742e

 

and try

Total Over 3 =
SUMX (
VALUES ( mbammsreportshare[Account Manager] ),
INT ( [Number Accounts Shared] > 3 )
)

Greg_Deckler
Super User
Super User

@gspollock You can get a total for your measure doing this. First, please vote for this idea: https://ideas.powerbi.com/ideas/idea/?ideaid=082203f1-594f-4ba7-ac87-bb91096c742e

This looks like a measure totals problem. Very common. See my post about it here: https://community.powerbi.com/t5/DAX-Commands-and-Tips/Dealing-with-Measure-Totals/td-p/63376

Also, this Quick Measure, Measure Totals, The Final Word should get you what you need:
https://community.powerbi.com/t5/Quick-Measures-Gallery/Measure-Totals-The-Final-Word/m-p/547907

Also: https://youtu.be/uXRriTN0cfY
And: https://youtu.be/n4TYhF2ARe8



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Power BI Cookbook Third Edition (Color)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

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