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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
MasterSonic
Helper IV
Helper IV

Count unique per other columns

Hello,

CodePlanStatus
101BuyReady
102SellReady
102SellReady


I would like to count unique code by Status and Planm but I have duplicates in Code column.

So on Report,  I could drop Plan and "Count of Status" showing 1 for Plan SELL, based on table above.



I have this measurment but it doesn't do the job, as is showing 2, counting Code per plan ONLY, without looking at Status

Measur1 = CALCULATE(DISTINCTCOUNT('Table'[Code]),ALLEXCEPT('Table'[Plan]))

Is there any way to perform calculaction please?
1 ACCEPTED SOLUTION

not sure if i get you, try this

Measure2 = 

COUNTROWS(
    SUMMARIZE(
        TableName, 
        TableName[Plan], 
        TableName[Code]
    )
)

View solution in original post

4 REPLIES 4
FreemanZ
Super User
Super User

hi   @MasterSonic 

try like:
 
Measure2 = 
COUNTROWS(
    SUMMARIZE(
        TableName, 
        TableName[Plan], 
        TableName[Status]
    )
)

Hi,
thanks but It does not give the wanted result.

lets extend my table

CodePlanStatus
101BuyReady
102SellReady
102SellReady
103SellReady


Now it should showing  col=Plan value=Sell  should be 2
As we have code duplicated.

I would like to count Code per Plan where value in column Status is Ready, but do not count duplicated Codes. Maybe this will help

not sure if i get you, try this

Measure2 = 

COUNTROWS(
    SUMMARIZE(
        TableName, 
        TableName[Plan], 
        TableName[Code]
    )
)

Thank You for help I have added below and I got what wanted.

Measure2 = 

COUNTROWS(
    SUMMARIZE( FILTER( Table,Table[Status] = "Ready"),
        
        TableName[Plan], 
        TableName[Code]
    )
)

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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